diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-02-06 16:09:09 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-02-06 16:09:09 +0100 |
| commit | bccede6563a312f029a04ce93d3f504f695a55ca (patch) | |
| tree | 530532aaa38063d6b90a90d69c83e98b23f41091 | |
| parent | aa9fd957134083c1b9fd10a96ca76cafc4595d18 (diff) | |
Preserve GET parameters when calling public/index.php, fixes #6324
Merge request studip/studip!4713
| -rw-r--r-- | public/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |
