summaryrefslogtreecommitdiff
path: root/classes/handler/public.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/handler/public.php')
-rwxr-xr-xclasses/handler/public.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index de9c9684a..38a8d749b 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -465,6 +465,14 @@ class Handler_Public extends Handler {
function login() {
if (!SINGLE_USER_MODE) {
+ /* if a session is started here there's a stale login cookie we need to clean */
+
+ if (session_status() != PHP_SESSION_NONE) {
+ $_SESSION["login_error_msg"] = __("Stale session cookie found, try logging in again");
+
+ header("Location: " . get_self_url_prefix());
+ exit;
+ }
$login = clean($_POST["login"]);
$password = clean($_POST["password"]);