From 8abbf13c68d7f8af10d6e8da601d615d60ad3d3e Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Tue, 31 Mar 2026 09:38:26 +0200 Subject: [PATCH] Fix ritorno alla home in login e logout --- login.php | 2 +- logout.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/login.php b/login.php index 4940fc2..bf87d5c 100644 --- a/login.php +++ b/login.php @@ -116,7 +116,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {

- Torna alla Home + Torna alla Home

diff --git a/logout.php b/logout.php index 7d39f5b..f83284d 100644 --- a/logout.php +++ b/logout.php @@ -2,5 +2,5 @@ session_start(); session_unset(); session_destroy(); -header("Location: home.php"); +header("Location: index.php"); exit;