From: Robert Leverington Date: Thu, 9 Apr 2009 18:54:15 +0000 (+0000) Subject: * Strict Standards: Cannot assign by reference. X-Git-Tag: 1.31.0-rc.0~42183 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=2aa0c02088c8628f70d443c20973850f25b3995c;p=lhc%2Fweb%2Fwiklou.git * Strict Standards: Cannot assign by reference. Fix for previous commit. --- 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); }