From: Platonides Date: Sat, 25 Dec 2010 22:00:55 +0000 (+0000) Subject: Copy & paste mistake X-Git-Tag: 1.31.0-rc.0~33090 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_modifier.php?a=commitdiff_plain;h=cd1b8ffd999c8dc4bf35404a4de87ba246edd02a;p=lhc%2Fweb%2Fwiklou.git Copy & paste mistake --- diff --git a/maintenance/purgeStaleMemcachedText.php b/maintenance/purgeStaleMemcachedText.php index f183b5e20e..200cc8bc31 100644 --- a/maintenance/purgeStaleMemcachedText.php +++ b/maintenance/purgeStaleMemcachedText.php @@ -14,7 +14,7 @@ function purgeStaleMemcachedText() { echo "Going to purge text entries from $latestReplicatedTextId to $maxTextId in $wgDBname\n"; for ( $i = $latestReplicatedTextId; $i < $maxTextId; $i++ ) { - $key = wfMemcKey( 'revisiontext', 'textid', $i++ ); + $key = wfMemcKey( 'revisiontext', 'textid', $i ); $wgMemc->delete( $key ); } }