From: Thomas Gries Date: Tue, 11 Oct 2011 18:33:35 +0000 (+0000) Subject: added 'key' in 'Dropping .. key' in dropIndex which was missing there X-Git-Tag: 1.31.0-rc.0~27141 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=1b6268db1a9e58055fbfb1ba2ee4553bdb5b633f;p=lhc%2Fweb%2Fwiklou.git added 'key' in 'Dropping .. key' in dropIndex which was missing there --- diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index b94fca4351..57b1df139a 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -470,7 +470,7 @@ abstract class DatabaseUpdater { */ protected function dropIndex( $table, $index, $patch, $fullpath = false ) { if ( $this->db->indexExists( $table, $index ) ) { - $this->output( "Dropping $index from table $table... " ); + $this->output( "Dropping $index key from table $table... " ); $this->applyPatch( $patch, $fullpath ); $this->output( "ok\n" ); } else {