For some reason we're not calling preInstall() like we should
authorChad Horohoe <demon@users.mediawiki.org>
Sun, 17 Oct 2010 19:02:59 +0000 (19:02 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Sun, 17 Oct 2010 19:02:59 +0000 (19:02 +0000)
includes/installer/CoreInstaller.php

index 18f2ed1..7f72485 100644 (file)
@@ -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;