Minor style
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Sun, 13 Sep 2009 15:28:35 +0000 (15:28 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Sun, 13 Sep 2009 15:28:35 +0000 (15:28 +0000)
includes/ChangesList.php
includes/specials/SpecialStatistics.php

index 1bfdc39..7b984b5 100644 (file)
@@ -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();
        }
 
index c4725dc..ea2b5be 100644 (file)
@@ -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();