diff options
author | jeremydurand <jeremydurand24@hotmail.fr> | 2016-05-30 14:35:24 +0200 |
---|---|---|
committer | Pierrick Le Gall <plg@piwigo.org> | 2016-05-30 14:35:24 +0200 |
commit | 022bfd2493ebb97e0c6d5c66430ab2b8874c82b2 (patch) | |
tree | df979a03fda91af6654ac30490bf0e6ceb3deccc /identification.php | |
parent | bd0d2ae6459c63ed7f7060589297bf63ae1cc619 (diff) |
fixes #487 replace "Invalid password" by "Invalid username or password" (#489)
* fixes #487 replace "Invalid password" by "Invalid username or password"
* missing space before exclamation mark
Diffstat (limited to 'identification.php')
-rw-r--r-- | identification.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/identification.php b/identification.php index be22eb571..3e5ab1560 100644 --- a/identification.php +++ b/identification.php @@ -50,7 +50,7 @@ if (isset($_POST['login'])) $page['errors'][] = l10n('Cookies are blocked or not supported by your browser. You must enable cookies to connect.'); } else - { + { if ($conf['insensitive_case_logon'] == true) { $_POST['username'] = search_case_username($_POST['username']); @@ -58,14 +58,14 @@ if (isset($_POST['login'])) $redirect_to = isset($_POST['redirect']) ? urldecode($_POST['redirect']) : ''; $remember_me = isset($_POST['remember_me']) and $_POST['remember_me']==1; - + if ( try_log_user($_POST['username'], $_POST['password'], $remember_me) ) { redirect(empty($redirect_to) ? get_gallery_home_url() : $redirect_to); } else { - $page['errors'][] = l10n('Invalid password!'); + $page['errors'][] = l10n('Invalid username or password!'); } } } |