added 'key' in 'Dropping .. key' in dropIndex which was missing there
authorThomas Gries <wikinaut@users.mediawiki.org>
Tue, 11 Oct 2011 18:33:35 +0000 (18:33 +0000)
committerThomas Gries <wikinaut@users.mediawiki.org>
Tue, 11 Oct 2011 18:33:35 +0000 (18:33 +0000)
includes/installer/DatabaseUpdater.php

index b94fca4..57b1df1 100644 (file)
@@ -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 {