From 887ff2a90e9f9328e0e0c6857c17c28a03c2a1f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Tue, 16 Jun 2026 20:33:04 +0200 Subject: [PATCH] Fix logout redirect --- public/logout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/logout.php b/public/logout.php index 3adf487..5e7e936 100644 --- a/public/logout.php +++ b/public/logout.php @@ -5,5 +5,5 @@ require_once __DIR__ . '/../modules/shared/auth/service.php'; auth_bootstrap_session(); auth_logout(); -header('Location: /'); +header('Location: /index.php'); exit;