From 1b6268db1a9e58055fbfb1ba2ee4553bdb5b633f Mon Sep 17 00:00:00 2001 From: Thomas Gries Date: Tue, 11 Oct 2011 18:33:35 +0000 Subject: [PATCH] added 'key' in 'Dropping .. key' in dropIndex which was missing there --- includes/installer/DatabaseUpdater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.20.1