diff options
-rw-r--r-- | identification.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/identification.php b/identification.php index 92b078458..70e46b18e 100644 --- a/identification.php +++ b/identification.php @@ -54,10 +54,14 @@ if (isset($_POST['login'])) } else { - if ($conf['insensitive_case_logon'] == true) - $_POST['username'] = search_case_username($_POST['username']); - $redirect_to = isset($_POST['redirect']) ? urldecode($_POST['redirect']) : ''; + if ($conf['insensitive_case_logon'] == true) + { + $_POST['username'] = search_case_username($_POST['username']); + } + + $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); |