bug 3223 fixed: make sure we have found a user before validating the connection
git-svn-id: http://piwigo.org/svn/branches/2.7@31167 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
42c04a1cb1
commit
32138f1fbd
1 changed files with 1 additions and 1 deletions
|
@ -1120,7 +1120,7 @@ SELECT '.$conf['user_fields']['id'].' AS id,
|
|||
WHERE '.$conf['user_fields']['username'].' = \''.pwg_db_real_escape_string($username).'\'
|
||||
;';
|
||||
$row = pwg_db_fetch_assoc(pwg_query($query));
|
||||
if ($conf['password_verify']($password, $row['password'], $row['id']))
|
||||
if (isset($row['id']) and $conf['password_verify']($password, $row['password'], $row['id']))
|
||||
{
|
||||
log_user($row['id'], $remember_me);
|
||||
trigger_notify('login_success', stripslashes($username));
|
||||
|
|
Loading…
Reference in a new issue