From 2aa0c02088c8628f70d443c20973850f25b3995c Mon Sep 17 00:00:00 2001 From: Robert Leverington Date: Thu, 9 Apr 2009 18:54:15 +0000 Subject: [PATCH] * Strict Standards: Cannot assign by reference. Fix for previous commit. --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index e11f9b637f..ab2b436480 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -655,7 +655,7 @@ class OutputPage { * Add wikitext with tidy enabled */ public function addWikiTextTidy( $text, $linestart = true ) { - $title = &$this->getTitle(); + $title = $this->getTitle(); $this->addWikiTextTitleTidy($text, $title, $linestart); } -- 2.20.1