Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -31,8 +31,8 @@ |
32 | 32 | * Changeslist contructor |
33 | 33 | * @param Skin $skin |
34 | 34 | */ |
35 | | - public function __construct( &$skin ) { |
36 | | - $this->skin =& $skin; |
| 35 | + public function __construct( $skin ) { |
| 36 | + $this->skin = $skin; |
37 | 37 | $this->preCacheMessages(); |
38 | 38 | } |
39 | 39 | |
Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | $text = Xml::openElement( 'table', array( 'class' => 'wikitable mw-statistics-table' ) ); |
62 | 62 | |
63 | 63 | # Statistic - pages |
64 | | - $text .= $this->getPageStats(); |
| 64 | + $text .= $this->getPageStats(); |
65 | 65 | |
66 | 66 | # Statistic - edits |
67 | 67 | $text .= $this->getEditStats(); |