Lots of nice new things! Yum.

git-svn-id: http://www.observium.org/svn/observer/trunk@220 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2008-04-03 19:04:24 +00:00
parent 77c0647062
commit 4e10de77a7
13 changed files with 281 additions and 35 deletions

View File

@@ -111,11 +111,11 @@ function interfacepermitted($interface_id) {
global $_SESSION;
if($_SESSION['userlevel'] >= "5") {
$allowed = true;
$allowed = TRUE;
} elseif ( devicepermitted(mysql_result(mysql_query("SELECT device_id FROM interface WHERE interface_id = '$interface_id'"),0))) {
$allowed = true;
$allowed = TRUE;
} elseif ( @mysql_result(mysql_query("SELECT count(*) FROM interface_perms WHERE `user_id` = '" . $_SESSION['user_id'] . "' AND `interface_id` = $interface_id"), 0) > '0') {
$allowed = true;
$allowed = TRUE;
} else { $allowed = FALSE; }
return $allowed;
}