Index: trunk/phase3/includes/SpecialMovepage.php |
— | — | @@ -354,6 +354,12 @@ |
355 | 355 | # Already did this one. |
356 | 356 | continue; |
357 | 357 | } |
| 358 | + |
| 359 | + if ( $wgUser->pingLimiter( 'move' ) ) { |
| 360 | + // We've hit the rate limiter. |
| 361 | + $extraOutput[] = wfMsg( 'actionthrottledtext' ); |
| 362 | + break; |
| 363 | + } |
358 | 364 | |
359 | 365 | $oldPage = Title::newFromRow( $row ); |
360 | 366 | $newPageName = preg_replace( |