From 35f1a02db4aa1c8499e10955c3f7f38bc474bd1e Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Sun, 10 Nov 2019 14:12:01 +0100 Subject: [PATCH] users are redirected to the welcome page when changing their password --- reset-password.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reset-password.php b/reset-password.php index 4aae824..c6b66c7 100644 --- a/reset-password.php +++ b/reset-password.php @@ -39,7 +39,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { get_user_info_from_session_id("id"), $new_password )) { - //header("location: welcome.php"); + header("location: welcome.php"); } else { echo "Oops! Something went wrong. Please try again later."; }