Index: trunk/extensions/Vote/Vote.page.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | parent::__construct( 'Vote', 'vote' ); |
19 | 19 | } |
20 | 20 | |
21 | | - public function execute( $mode = false ) { |
| 21 | + public function execute( $mode ) { |
22 | 22 | global $wgOut, $wgUser; |
23 | 23 | $this->setHeaders(); |
24 | 24 | $this->user = $wgUser; |
Index: trunk/extensions/Contributors/Contributors.page.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | parent::__construct( 'Contributors' ); |
17 | 17 | } |
18 | 18 | |
19 | | - public function execute( $target = false ) { |
| 19 | + public function execute( $target ) { |
20 | 20 | wfProfileIn( __METHOD__ ); |
21 | 21 | global $wgOut, $wgRequest; |
22 | 22 | $this->setHeaders(); |
Index: trunk/extensions/ProfileMonitor/ProfileMonitor.class.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | parent::__construct( 'Profiling' ); |
15 | 15 | } |
16 | 16 | |
17 | | - public function execute() { |
| 17 | + public function execute( $par ) { |
18 | 18 | global $wgOut, $wgRequest; |
19 | 19 | $this->setHeaders(); |
20 | 20 | |
Index: trunk/extensions/Duplicator/Duplicator.page.php |
— | — | @@ -38,7 +38,7 @@ |
39 | 39 | * |
40 | 40 | * @param $title Title passed to the page |
41 | 41 | */ |
42 | | - public function execute( $title = false ) { |
| 42 | + public function execute( $title ) { |
43 | 43 | global $wgUser, $wgOut, $wgRequest, $wgLang, $wgDuplicatorRevisionLimit; |
44 | 44 | $this->setHeaders(); |
45 | 45 | |