Fixes errors and notices
parent
e084a04305
commit
1733e75dd1
|
@ -21,13 +21,6 @@ if (isset($_REQUEST['until_time'])) {
|
||||||
$until_time = htmlspecialchars($_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
|
// hosts
|
||||||
if (isset($_POST['address'])) {
|
if (isset($_POST['address'])) {
|
||||||
$address = htmlspecialchars($_POST['address']);
|
$address = htmlspecialchars($_POST['address']);
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
<?php if (isset($error)) { ?>
|
<?php
|
||||||
<div class="error"><?= $error ?></div>
|
|
||||||
<?php } ?>
|
|
||||||
|
|
||||||
<?php if (isset($notice)) { ?>
|
// 'notice' for all non-critical messages
|
||||||
<div class="notice"><?= $notice ?></div>
|
if (isset($_SESSION['error'])) {
|
||||||
<?php } ?>
|
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