🐛 Fix alerting system for new request form

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-04 19:49:42 +01:00
parent 476c5c03d1
commit 68b0e4a565
2 changed files with 14 additions and 14 deletions

View File

@@ -67,14 +67,3 @@
</div>
</nav>
</header>
<section id="alerts">
<?php
foreach($_SESSION['alerts'] as $alert) {
echo("
<div class='alert alert-" . $alert['type'] . "' role='alert'>
" . $alert['msg'] . "
</div>
"); }
?>
</section>