mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
fix: Undefined function
This commit is contained in:
parent
5c3046d855
commit
831008aa33
1 changed files with 2 additions and 4 deletions
|
@ -32,12 +32,10 @@ function renderChoice(): void {
|
|||
|
||||
function reload(): void {
|
||||
if (isset($_GET["ajax"])) {
|
||||
header("LOCATION: ?ajax");
|
||||
header("LOCATION: ?ajax", true, 303);
|
||||
} else {
|
||||
header("LOCATION: /");
|
||||
header("LOCATION: /", true, 303);
|
||||
}
|
||||
|
||||
http_send_status(303);
|
||||
}
|
||||
|
||||
function newPairing(): array {
|
||||
|
|
Loading…
Reference in a new issue