diff --git a/install/index.php b/install/index.php index d514eb2a4..24577aaaf 100755 --- a/install/index.php +++ b/install/index.php @@ -127,6 +127,13 @@ else if (isset($_POST['install'])) { } // create database structure $query = $handle->exec($sql_structure); + + $usertest = executeQuery($handle,"SELECT * from users WHERE username = ?", array($username)); + if (!empty($usertest)) { + $continue = false; + $errors[] = "An user already exists with this username in database."; + } + } catch (PDOException $e) { $errors[] = $e->getMessage(); $continue = false; @@ -134,13 +141,6 @@ else if (isset($_POST['install'])) { } } - $usertest = executeQuery($handle,"SELECT * from users WHERE username = ?", array($username)); - if (!empty($usertest)) { - $continue = false; - $errors[] = "An user already exists with this username in database."; - } - - if ($continue) { $sql = "INSERT INTO users (username, password, name, email) VALUES (?, ?, ?, ?)"; $params = array($username, $salted_password, $username, $email);