From: Tim Starling Date: Mon, 17 Aug 2009 13:41:23 +0000 (+0000) Subject: Fix PHP4-ism X-Git-Tag: 1.31.0-rc.0~40260 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=a493d6db6819a7e3692be309cbe9c582f0b4466f;p=lhc%2Fweb%2Fwiklou.git Fix PHP4-ism --- 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(); }