From: Niklas Laxström Date: Sun, 13 Sep 2009 15:28:35 +0000 (+0000) Subject: Minor style X-Git-Tag: 1.31.0-rc.0~39756 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=e2d4f3af8682f15c6d3d785535704a80e5cef200;p=lhc%2Fweb%2Fwiklou.git Minor style --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 1bfdc39bf5..7b984b5099 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -31,8 +31,8 @@ class ChangesList { * Changeslist contructor * @param Skin $skin */ - public function __construct( &$skin ) { - $this->skin =& $skin; + public function __construct( $skin ) { + $this->skin = $skin; $this->preCacheMessages(); } diff --git a/includes/specials/SpecialStatistics.php b/includes/specials/SpecialStatistics.php index c4725dc2af..ea2b5be8b7 100644 --- a/includes/specials/SpecialStatistics.php +++ b/includes/specials/SpecialStatistics.php @@ -60,7 +60,7 @@ class SpecialStatistics extends SpecialPage { $text = Xml::openElement( 'table', array( 'class' => 'wikitable mw-statistics-table' ) ); # Statistic - pages - $text .= $this->getPageStats(); + $text .= $this->getPageStats(); # Statistic - edits $text .= $this->getEditStats();