Skip to content

Commit

Permalink
display status msg at top of page
Browse files Browse the repository at this point in the history
  • Loading branch information
robbat2 committed Jun 22, 2003
1 parent 4444959 commit addb6ea
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions header.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
/* $Id: header.inc.php,v 1.10 2003/06/12 17:43:47 robbat2 Exp $ */
/* $Id: header.inc.php,v 1.11 2003/06/22 23:07:30 robbat2 Exp $ */
error_reporting(E_ALL);
ob_start();
include 'include.php';
Expand All @@ -20,7 +20,10 @@
exit;
}
$validationskipped = FALSE;

}
if(isset($_SESSION) && isset($_SESSION['msg'])) {
echo $_SESSION['msg'].'<br />'."\n";
unset($_SESSION['msg']);
}

?>

0 comments on commit addb6ea

Please sign in to comment.