* Strict Standards: Cannot assign by reference.
authorRobert Leverington <roberthl@users.mediawiki.org>
Thu, 9 Apr 2009 18:54:15 +0000 (18:54 +0000)
committerRobert Leverington <roberthl@users.mediawiki.org>
Thu, 9 Apr 2009 18:54:15 +0000 (18:54 +0000)
  Fix for previous commit.

includes/OutputPage.php

index e11f9b6..ab2b436 100644 (file)
@@ -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);
        }