From ffae3f9f0282ef965586170670d60c5b524f496d Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sun, 17 Oct 2010 19:02:59 +0000 Subject: [PATCH] For some reason we're not calling preInstall() like we should --- includes/installer/CoreInstaller.php | 1 + 1 file changed, 1 insertion(+) 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; -- 2.20.1