fix indentation issues, tabs are forbidden

git-svn-id: http://piwigo.org/svn/trunk@11989 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2011-08-23 19:01:32 +00:00
parent 8f05d60554
commit ce0179cd26

View File

@@ -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);