From bccede6563a312f029a04ce93d3f504f695a55ca Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms Date: Fri, 6 Feb 2026 16:09:09 +0100 Subject: Preserve GET parameters when calling public/index.php, fixes #6324 Merge request studip/studip!4713 --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 1977233..a6483d4 100644 --- a/public/index.php +++ b/public/index.php @@ -19,5 +19,5 @@ require '../lib/bootstrap.php'; -header('Location: ' . URLHelper::getURL('dispatch.php/start')); +header('Location: ' . URLHelper::getURL('dispatch.php/login', $_GET)); -- cgit v1.0