From 5395d7f8f59ffa54996f908c48925fcc635cc92a Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Sun, 1 Mar 2015 21:56:01 +0100 Subject: fix eventual bugs when user exists in database and connection doesn't work --- install/index.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'install/index.php') diff --git a/install/index.php b/install/index.php index d514eb2a..24577aaa 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); -- cgit v1.2.3