From e2d4f3af8682f15c6d3d785535704a80e5cef200 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sun, 13 Sep 2009 15:28:35 +0000 Subject: [PATCH] Minor style --- includes/ChangesList.php | 4 ++-- includes/specials/SpecialStatistics.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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(); -- 2.20.1