🐛 Add exit() after header() calls

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-04 18:43:52 +01:00
parent 146c92bbad
commit 00ad2c6d17
2 changed files with 2 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
<?php
require_once __DIR__ . "/prereqs.php";
$PAGE_TITLE = $PAGE_NAME . " :: " . $_ENV['APP_NAME'];
exit();
?>
<!doctype html>

View File

@@ -45,6 +45,7 @@
}
header('Location: /view?rid=' . $tkt_uuid);
exit();
}
?>