Index: trunk/phase3/includes/api/ApiMove.php |
— | — | @@ -164,7 +164,9 @@ |
165 | 165 | return $retval; |
166 | 166 | } |
167 | 167 | |
168 | | - public function mustBePosted() { return true; } |
| 168 | + public function mustBePosted() { |
| 169 | + return true; |
| 170 | + } |
169 | 171 | |
170 | 172 | public function isWriteMode() { |
171 | 173 | return true; |
Index: trunk/phase3/includes/api/ApiProtect.php |
— | — | @@ -128,7 +128,9 @@ |
129 | 129 | $this->getResult()->addValue( null, $this->getModuleName(), $res ); |
130 | 130 | } |
131 | 131 | |
132 | | - public function mustBePosted() { return true; } |
| 132 | + public function mustBePosted() { |
| 133 | + return true; |
| 134 | + } |
133 | 135 | |
134 | 136 | public function isWriteMode() { |
135 | 137 | return true; |
Index: trunk/phase3/includes/api/ApiDelete.php |
— | — | @@ -172,7 +172,9 @@ |
173 | 173 | return array(); |
174 | 174 | } |
175 | 175 | |
176 | | - public function mustBePosted() { return true; } |
| 176 | + public function mustBePosted() { |
| 177 | + return true; |
| 178 | + } |
177 | 179 | |
178 | 180 | public function isWriteMode() { |
179 | 181 | return true; |
Index: trunk/phase3/includes/api/ApiImport.php |
— | — | @@ -98,7 +98,9 @@ |
99 | 99 | $this->getResult()->addValue( null, $this->getModuleName(), $resultData ); |
100 | 100 | } |
101 | 101 | |
102 | | - public function mustBePosted() { return true; } |
| 102 | + public function mustBePosted() { |
| 103 | + return true; |
| 104 | + } |
103 | 105 | |
104 | 106 | public function isWriteMode() { |
105 | 107 | return true; |
Index: trunk/phase3/includes/api/ApiUnblock.php |
— | — | @@ -77,7 +77,9 @@ |
78 | 78 | $this->getResult()->addValue( null, $this->getModuleName(), $res ); |
79 | 79 | } |
80 | 80 | |
81 | | - public function mustBePosted() { return true; } |
| 81 | + public function mustBePosted() { |
| 82 | + return true; |
| 83 | + } |
82 | 84 | |
83 | 85 | public function isWriteMode() { |
84 | 86 | return true; |
Index: trunk/phase3/includes/api/ApiLogin.php |
— | — | @@ -136,7 +136,9 @@ |
137 | 137 | $this->getResult()->addValue( null, 'login', $result ); |
138 | 138 | } |
139 | 139 | |
140 | | - public function mustBePosted() { return true; } |
| 140 | + public function mustBePosted() { |
| 141 | + return true; |
| 142 | + } |
141 | 143 | |
142 | 144 | public function isReadMode() { |
143 | 145 | return false; |
Index: trunk/phase3/includes/api/ApiEmailUser.php |
— | — | @@ -72,7 +72,9 @@ |
73 | 73 | $this->getResult()->addValue( null, $this->getModuleName(), $result ); |
74 | 74 | } |
75 | 75 | |
76 | | - public function mustBePosted() { return true; } |
| 76 | + public function mustBePosted() { |
| 77 | + return true; |
| 78 | + } |
77 | 79 | |
78 | 80 | public function isWriteMode() { |
79 | 81 | return true; |
Index: trunk/phase3/includes/api/ApiBlock.php |
— | — | @@ -112,7 +112,9 @@ |
113 | 113 | $this->getResult()->addValue( null, $this->getModuleName(), $res ); |
114 | 114 | } |
115 | 115 | |
116 | | - public function mustBePosted() { return true; } |
| 116 | + public function mustBePosted() { |
| 117 | + return true; |
| 118 | + } |
117 | 119 | |
118 | 120 | public function isWriteMode() { |
119 | 121 | return true; |
Index: trunk/phase3/includes/api/ApiUndelete.php |
— | — | @@ -85,7 +85,9 @@ |
86 | 86 | $this->getResult()->addValue( null, $this->getModuleName(), $info ); |
87 | 87 | } |
88 | 88 | |
89 | | - public function mustBePosted() { return true; } |
| 89 | + public function mustBePosted() { |
| 90 | + return true; |
| 91 | + } |
90 | 92 | |
91 | 93 | public function isWriteMode() { |
92 | 94 | return true; |