From: Antoine Musso Date: Mon, 12 Dec 2011 10:48:49 +0000 (+0000) Subject: update message when dropping index ('index' not 'key') X-Git-Tag: 1.31.0-rc.0~26052 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=47d62862bcbc78ebb4d89fd07f10b62556310370;p=lhc%2Fweb%2Fwiklou.git update message when dropping index ('index' not 'key') Follow r99524 --- 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 {