From a493d6db6819a7e3692be309cbe9c582f0b4466f Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Mon, 17 Aug 2009 13:41:23 +0000 Subject: [PATCH] Fix PHP4-ism --- includes/HistoryPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/HistoryPage.php b/includes/HistoryPage.php index 2420d6ed7a..bf859571b7 100644 --- a/includes/HistoryPage.php +++ b/includes/HistoryPage.php @@ -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(); } -- 2.20.1