fix page reload before exit on POST

This commit is contained in:
root 2025-07-09 16:56:18 +02:00
parent 36d53a91ff
commit 1e3158eb33
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ if (isset($_POST["AliasHelferID"])) {
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// POST from _login.php after login
//echo var_dump($_POST);
//header("Location: " . $_SERVER['PHP_SELF']);
header("Location: " . $_SERVER['PHP_SELF']);
exit;
}