Index: branches/wmf/1.17wmf1/extensions/LiquidThreads/pages/SpecialNewMessages.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | private $user, $output, $request; |
7 | 7 | |
8 | 8 | function __construct() { |
9 | | - parent::SpecialPage( 'NewMessages' ); |
| 9 | + parent::__construct( 'NewMessages' ); |
10 | 10 | $this->includable( true ); |
11 | 11 | } |
12 | 12 | |
Index: branches/wmf/1.17wmf1/extensions/LiquidThreads_alpha/pages/SpecialNewMessages.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | private $user, $output, $request; |
7 | 7 | |
8 | 8 | function __construct() { |
9 | | - parent::SpecialPage( 'NewMessages' ); |
| 9 | + parent::__construct( 'NewMessages' ); |
10 | 10 | $this->includable( true ); |
11 | 11 | } |
12 | 12 | |
Index: branches/wmf/1.17wmf1/extensions/ContributionReporting/ContributionHistory_body.php |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | <?php |
3 | 3 | class ContributionHistory extends SpecialPage { |
4 | 4 | function ContributionHistory() { |
5 | | - SpecialPage::SpecialPage( 'ContributionHistory' ); |
| 5 | + parent::__construct( 'ContributionHistory' ); |
6 | 6 | } |
7 | 7 | |
8 | 8 | function execute( $language = null ) { |
Index: branches/wmf/1.17wmf1/extensions/ContributionReporting/ContributionTotal_body.php |
— | — | @@ -2,7 +2,7 @@ |
3 | 3 | |
4 | 4 | class ContributionTotal extends SpecialPage { |
5 | 5 | function ContributionTotal() { |
6 | | - SpecialPage::SpecialPage( 'ContributionTotal' ); |
| 6 | + parent::__construct( 'ContributionTotal' ); |
7 | 7 | } |
8 | 8 | |
9 | 9 | function execute( $par ) { |