From 2f81ebe30e11f2d2c6362114a4607917c925c868 Mon Sep 17 00:00:00 2001 From: zPlus <-> Date: Fri, 18 Mar 2016 07:42:16 +0100 Subject: [PATCH] login_reset: change redirection --- login_reset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/login_reset.php b/login_reset.php index 9c7b62b6..549316bd 100644 --- a/login_reset.php +++ b/login_reset.php @@ -87,7 +87,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') // Is the token valid? $user = $db->password_reset_validate ($token, $new_password); - header ('Location: ./'); + header ('Location: ./login'); exit (); } }