Fixes errors and notices
parent
e084a04305
commit
1733e75dd1
|
@ -21,13 +21,6 @@ if (isset($_REQUEST['until_time'])) {
|
|||
$until_time = htmlspecialchars($_REQUEST['until_time']);
|
||||
}
|
||||
|
||||
if (isset($_SESSION['notice'])) {
|
||||
$notice = htmlspecialchars($_SESSION['notice']); // 'notice' for all non-critical messages
|
||||
}
|
||||
if (isset($_SESSION['error'])) {
|
||||
$error = htmlspecialchars($_SESSION['error']); // 'error' for errors
|
||||
}
|
||||
|
||||
// hosts
|
||||
if (isset($_POST['address'])) {
|
||||
$address = htmlspecialchars($_POST['address']);
|
||||
|
|
|
@ -1,7 +1,13 @@
|
|||
<?php if (isset($error)) { ?>
|
||||
<div class="error"><?= $error ?></div>
|
||||
<?php } ?>
|
||||
<?php
|
||||
|
||||
<?php if (isset($notice)) { ?>
|
||||
<div class="notice"><?= $notice ?></div>
|
||||
<?php } ?>
|
||||
// 'notice' for all non-critical messages
|
||||
if (isset($_SESSION['error'])) {
|
||||
echo "\t\t" . '<div class="error">' . $_SESSION['error'] . '</div>';
|
||||
}
|
||||
|
||||
// 'error' for errors
|
||||
if (isset($_SESSION['notice'])) {
|
||||
echo "\t\t" . '<div class="notice">' . $_SESSION['notice'] . '</div>';
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue