Index: trunk/phase3/maintenance/purgeStaleMemcachedText.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | echo "Going to purge text entries from $latestReplicatedTextId to $maxTextId in $wgDBname\n"; |
16 | 16 | |
17 | 17 | for ( $i = $latestReplicatedTextId; $i < $maxTextId; $i++ ) { |
18 | | - $key = wfMemcKey( 'revisiontext', 'textid', $i++ ); |
| 18 | + $key = wfMemcKey( 'revisiontext', 'textid', $i ); |
19 | 19 | $wgMemc->delete( $key ); |
20 | 20 | } |
21 | 21 | } |