Fix method siganture mismatch causing notice
authorjeroendedauw <jeroendedauw@gmail.com>
Thu, 5 Jul 2012 15:08:10 +0000 (17:08 +0200)
committerjeroendedauw <jeroendedauw@gmail.com>
Thu, 5 Jul 2012 15:08:10 +0000 (17:08 +0200)
Change-Id: If2eb0441c19f2f9635d3ce0633e2da7005a9d9b0

includes/installer/PostgresUpdater.php

index 43005a8..9aa1a13 100644 (file)
@@ -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 ."\"" );