update message when dropping index ('index' not 'key')
authorAntoine Musso <hashar@users.mediawiki.org>
Mon, 12 Dec 2011 10:48:49 +0000 (10:48 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Mon, 12 Dec 2011 10:48:49 +0000 (10:48 +0000)
Follow r99524

includes/installer/DatabaseUpdater.php

index 54767a0..0ee2c51 100644 (file)
@@ -490,7 +490,7 @@ abstract class DatabaseUpdater {
         */
        protected function dropIndex( $table, $index, $patch, $fullpath = false ) {
                if ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
-                       $this->output( "Dropping $index key from table $table... " );
+                       $this->output( "Dropping $index index from table $table... " );
                        $this->applyPatch( $patch, $fullpath );
                        $this->output( "done.\n" );
                } else {