From 4fecc78911e0bf7573639c62ef5b4d818cc14864 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 4 Jul 2010 16:40:28 +0000 Subject: [PATCH] new-installer: Return newGood() from CreateDBAccount if we're not creating an account This unbreaks the installation when we're not creating a user, broken in my last commit. --- includes/installer/MysqlInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/MysqlInstaller.php b/includes/installer/MysqlInstaller.php index a078d1eb96..c0829f42d2 100644 --- a/includes/installer/MysqlInstaller.php +++ b/includes/installer/MysqlInstaller.php @@ -380,7 +380,7 @@ class MysqlInstaller extends InstallerDBType { global $IP; if ( !$this->getVar( '_CreateDBAccount' ) ) { - return; + return Status::newGood(); } $status = $this->getConnection(); -- 2.20.1