Fix PHP4-ism
authorTim Starling <tstarling@users.mediawiki.org>
Mon, 17 Aug 2009 13:41:23 +0000 (13:41 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Mon, 17 Aug 2009 13:41:23 +0000 (13:41 +0000)
includes/HistoryPage.php

index 2420d6e..bf85957 100644 (file)
@@ -29,8 +29,8 @@ class HistoryPage {
         */
        function __construct( $article ) {
                global $wgUser;
-               $this->article =& $article;
-               $this->title =& $article->getTitle();
+               $this->article = $article;
+               $this->title = $article->getTitle();
                $this->skin = $wgUser->getSkin();
                $this->preCacheMessages();
        }