From: Sam Reed Date: Wed, 12 Jan 2011 02:20:41 +0000 (+0000) Subject: Fix another typo in r80075 X-Git-Tag: 1.31.0-rc.0~32602 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=9015102f59f70f363e0bfc50348be75787815417;p=lhc%2Fweb%2Fwiklou.git Fix another typo in r80075 --- diff --git a/maintenance/cleanupRemovedModules.php b/maintenance/cleanupRemovedModules.php index 839a8fccce..ee9b319164 100644 --- a/maintenance/cleanupRemovedModules.php +++ b/maintenance/cleanupRemovedModules.php @@ -72,7 +72,7 @@ class CleanupRemovedModules extends Maintenance { $this->output( "Cleaning up msg_resource_links table...\n" ); $i = 1; - $msgResLinks = $dbw->tableName( 'mr_resource_links' ); + $msgResLinks = $dbw->tableName( 'msg_resource_links' ); do { $where = $moduleList ? "mrl_resource NOT IN ($moduleList)" : '1=1'; $dbw->query( "DELETE FROM $msgResLinks WHERE $where LIMIT $limit", __METHOD__ );