From 47d62862bcbc78ebb4d89fd07f10b62556310370 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Mon, 12 Dec 2011 10:48:49 +0000 Subject: [PATCH] update message when dropping index ('index' not 'key') Follow r99524 --- 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 54767a0802..0ee2c5104b 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -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 { -- 2.20.1