Index: trunk/phase3/includes/api/ApiMove.php |
— | — | @@ -39,8 +39,8 @@ |
40 | 40 |
|
41 | 41 | public function execute() {
|
42 | 42 | global $wgUser;
|
43 | | - $this->requestWriteMode();
|
44 | | - $params = $this->getMain()->extractRequestParams();
|
| 43 | + $this->getMain()->requestWriteMode();
|
| 44 | + $params = $this->extractRequestParams();
|
45 | 45 | if(is_null($params['reason']))
|
46 | 46 | $params['reason'] = '';
|
47 | 47 |
|
Index: trunk/phase3/includes/api/ApiRollback.php |
— | — | @@ -38,8 +38,8 @@ |
39 | 39 |
|
40 | 40 | public function execute() {
|
41 | 41 | global $wgUser;
|
42 | | - $this->requestWriteMode();
|
43 | | - $params = $this->getMain()->extractRequestParams();
|
| 42 | + $this->getMain()->equestWriteMode();
|
| 43 | + $params = $this->extractRequestParams();
|
44 | 44 |
|
45 | 45 | $titleObj = NULL;
|
46 | 46 | if(!isset($params['title']))
|
Index: trunk/phase3/includes/api/ApiBlock.php |
— | — | @@ -38,8 +38,8 @@ |
39 | 39 |
|
40 | 40 | public function execute() {
|
41 | 41 | global $wgUser;
|
42 | | - $this->requestWriteMode();
|
43 | | - $params = $this->getMain()->extractRequestParams();
|
| 42 | + $this->getMain()->requestWriteMode();
|
| 43 | + $params = $this->extractRequestParams();
|
44 | 44 |
|
45 | 45 | if($params['gettoken'])
|
46 | 46 | {
|
Index: trunk/phase3/includes/api/ApiDelete.php |
— | — | @@ -84,8 +84,8 @@ |
85 | 85 |
|
86 | 86 | public function execute() {
|
87 | 87 | global $wgUser;
|
88 | | - $this->requestWriteMode();
|
89 | | - $params = $this->getMain()->extractRequestParams();
|
| 88 | + $this->getMain()->requestWriteMode();
|
| 89 | + $params = $this->extractRequestParams();
|
90 | 90 |
|
91 | 91 | $titleObj = NULL;
|
92 | 92 | if(!isset($params['title']))
|
Index: trunk/phase3/includes/api/ApiUnblock.php |
— | — | @@ -38,8 +38,8 @@ |
39 | 39 |
|
40 | 40 | public function execute() {
|
41 | 41 | global $wgUser;
|
42 | | - $this->requestWriteMode();
|
43 | | - $params = $this->getMain()->extractRequestParams();
|
| 42 | + $this->getMain()->requestWriteMode();
|
| 43 | + $params = $this->extractRequestParams();
|
44 | 44 |
|
45 | 45 | if($params['gettoken'])
|
46 | 46 | {
|