Fix for r72553: DatabaseUpdater::execute() doesn't exist...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 1 Oct 2010 20:39:07 +0000 (20:39 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 1 Oct 2010 20:39:07 +0000 (20:39 +0000)
includes/installer/DatabaseInstaller.php

index e5af593..b637495 100644 (file)
@@ -156,7 +156,7 @@ abstract class DatabaseInstaller {
                ob_start( array( $this, 'outputHandler' ) );
                try {
                        $up = DatabaseUpdater::newForDB( $this->db );
-                       $up->execute();
+                       $up->doUpdates();
                } catch ( MWException $e ) {
                        echo "\nAn error occured:\n";
                        echo $e->getText();