Index: trunk/extensions/Translate/tag/SpecialPageTranslation.php |
— | — | @@ -541,7 +541,7 @@ |
542 | 542 | |
543 | 543 | // Re-generate caches |
544 | 544 | MessageGroups::clearCache(); |
545 | | - MessageIndexReduildJob::newJob()->insert(); |
| 545 | + MessageIndexReduildJob::newJob()->insert(); // FIXME: MessageIndexReduildJob is undefined |
546 | 546 | return false; |
547 | 547 | } |
548 | 548 | |
Index: trunk/extensions/Translate/tag/SpecialPageTranslationDeletePage.php |
— | — | @@ -297,7 +297,7 @@ |
298 | 298 | } |
299 | 299 | |
300 | 300 | MessageGroups::clearCache(); |
301 | | - MessageIndexReduildJob::newJob()->insert(); |
| 301 | + MessageIndexReduildJob::newJob()->insert(); // FIXME: MessageIndexReduildJob is undefined |
302 | 302 | |
303 | 303 | global $wgOut; |
304 | 304 | $wgOut->addWikiMsg( 'pt-deletepage-started' ); |
Index: trunk/extensions/Translate/tag/SpecialPageTranslationMovePage.php |
— | — | @@ -22,8 +22,13 @@ |
23 | 23 | */ |
24 | 24 | class SpecialPageTranslationMovePage extends UnlistedSpecialPage { |
25 | 25 | // Basic form parameters both as text and as titles |
26 | | - protected $newText, $newTitle, $oldText, $oldTitle; |
| 26 | + protected $newText, $oldText; |
27 | 27 | |
| 28 | + /** |
| 29 | + * @var Title |
| 30 | + */ |
| 31 | + protected $newTitle, $oldTitle; |
| 32 | + |
28 | 33 | // Other form parameters |
29 | 34 | /** |
30 | 35 | * 'check' or 'perform' |
— | — | @@ -48,6 +53,7 @@ |
49 | 54 | |
50 | 55 | /** |
51 | 56 | * User instance. |
| 57 | + * @var User |
52 | 58 | */ |
53 | 59 | protected $user; |
54 | 60 | |
— | — | @@ -185,6 +191,8 @@ |
186 | 192 | /** |
187 | 193 | * Checks token. Use before real actions happen. Have to use wpEditToken |
188 | 194 | * for compatibility for SpecialMovepage.php. |
| 195 | + * |
| 196 | + * @return bool |
189 | 197 | */ |
190 | 198 | protected function checkToken() { |
191 | 199 | global $wgRequest; |
— | — | @@ -380,7 +388,7 @@ |
381 | 389 | } |
382 | 390 | |
383 | 391 | MessageGroups::clearCache(); |
384 | | - MessageIndexReduildJob::newJob()->insert(); |
| 392 | + MessageIndexReduildJob::newJob()->insert(); // FIXME: MessageIndexReduildJob is undefined |
385 | 393 | |
386 | 394 | global $wgOut; |
387 | 395 | $wgOut->addWikiMsg( 'pt-movepage-started' ); |