From: Chad Horohoe Date: Sun, 17 Oct 2010 19:02:59 +0000 (+0000) Subject: For some reason we're not calling preInstall() like we should X-Git-Tag: 1.31.0-rc.0~34462 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=ffae3f9f0282ef965586170670d60c5b524f496d;p=lhc%2Fweb%2Fwiklou.git For some reason we're not calling preInstall() like we should --- diff --git a/includes/installer/CoreInstaller.php b/includes/installer/CoreInstaller.php index 18f2ed12f6..7f72485754 100644 --- a/includes/installer/CoreInstaller.php +++ b/includes/installer/CoreInstaller.php @@ -328,6 +328,7 @@ abstract class CoreInstaller extends Installer { public function performInstallation( $startCB, $endCB ) { $installResults = array(); $installer = $this->getDBInstaller(); + $installer->preInstall(); foreach( $this->getInstallSteps() as $stepObj ) { $step = is_array( $stepObj ) ? $stepObj['name'] : $stepObj;