Alerts gui commit

This commit is contained in:
laf
2014-11-30 17:49:52 +00:00
committed by Neil Lathwood
parent 05d998c1f8
commit 807fc9a3ba
42 changed files with 2068 additions and 170 deletions

View File

@ -709,4 +709,12 @@ function generate_pagination($count,$limit,$page,$links = 2) {
return($return);
}
function is_admin() {
if ($_SESSION['userlevel'] == '10') {
$allowed = true;
} else {
$allowed = false;
}
}
?>