From 10faca6442fd56adfb249c0e954b76a68b04aed5 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Thu, 5 Jul 2012 17:08:10 +0200 Subject: [PATCH] Fix method siganture mismatch causing notice Change-Id: If2eb0441c19f2f9635d3ce0633e2da7005a9d9b0 --- includes/installer/PostgresUpdater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index 43005a8918..9aa1a13c4c 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -698,7 +698,7 @@ END; } } - protected function dropIndex( $table, $index ) { + protected function dropIndex( $table, $index, $patch = '', $fullpath = false ) { if ( $this->db->indexExists( $table, $index ) ) { $this->output( "Dropping obsolete index '$index'\n" ); $this->db->query( "DROP INDEX \"". $index ."\"" ); -- 2.20.1