From 12178fe3769162d6602e4d3b12fb6e69283adf28 Mon Sep 17 00:00:00 2001 From: bradymiller Date: Thu, 14 Oct 2010 00:22:06 +0000 Subject: [PATCH] bug fix for multisite module --- library/classes/Installer.class.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/classes/Installer.class.php b/library/classes/Installer.class.php index 7d387c518..03e1eb7dc 100644 --- a/library/classes/Installer.class.php +++ b/library/classes/Installer.class.php @@ -82,6 +82,11 @@ class Installer public function user_password_is_valid() { + // Skip this validation if cloning a database + if ( ! empty ($this->clone_database) ) { + return TRUE; + } + if ( $this->iuserpass == "" || !isset($this->iuserpass) ) { $this->error_message = "The password for the user is invalid: '$this->iuserpass'"; return FALSE; -- 2.11.4.GIT