[FIX] Ignore missing HTTP_REFERRER

Fixes #1626
This commit is contained in:
Sebastian Grewe 2014-01-29 08:52:12 +01:00
parent 56f995c86f
commit d007358710

View File

@ -6,7 +6,7 @@ if (!defined('SECURITY')) die('Hacking attempt');
if ($user->isAuthenticated()) {
// Reset failed login counter
$user->setUserFailed($_SESSION['USERDATA']['id'], 0);
header("Location: " . $_SERVER['HTTP_REFERER']);
if (!empty($_SERVER['HTTP_REFERER'])) header("Location: " . $_SERVER['HTTP_REFERER']);
}
// Somehow we still need to load this empty template
$smarty->assign("CONTENT", "empty");