From: Alexandre Emsenhuber Date: Fri, 1 Oct 2010 20:39:07 +0000 (+0000) Subject: Fix for r72553: DatabaseUpdater::execute() doesn't exist... X-Git-Tag: 1.31.0-rc.0~34700 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=835b1cad6a72434a521875bf4883e24c6c051ff5;p=lhc%2Fweb%2Fwiklou.git Fix for r72553: DatabaseUpdater::execute() doesn't exist... --- diff --git a/includes/installer/DatabaseInstaller.php b/includes/installer/DatabaseInstaller.php index e5af593a52..b63749520e 100644 --- a/includes/installer/DatabaseInstaller.php +++ b/includes/installer/DatabaseInstaller.php @@ -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();