mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
fix eventual bugs when user exists in database and connection doesn't work
This commit is contained in:
parent
6269df8df9
commit
5395d7f8f5
1 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue