mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
updates
git-svn-id: http://www.observium.org/svn/observer/trunk@357 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -1 +1 @@
|
|||||||
../graphs/
|
../graphs
|
||||||
@@ -28,7 +28,9 @@ if($_GET[debug]) {
|
|||||||
<head>
|
<head>
|
||||||
<title><?php echo($config['page_title']); ?></title>
|
<title><?php echo($config['page_title']); ?></title>
|
||||||
<base href="<?php echo($config['base_url']); ?>" />
|
<base href="<?php echo($config['base_url']); ?>" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
||||||
|
<meta http-equiv="content-language" content="en-us" />
|
||||||
<?php
|
<?php
|
||||||
if($config['page_refresh']) { echo("<meta http-equiv='refresh' content='".$config['page_refresh']."'>"); }
|
if($config['page_refresh']) { echo("<meta http-equiv='refresh' content='".$config['page_refresh']."'>"); }
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -10,11 +10,9 @@ if($_GET['status'] == "alerted") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$device_query = mysql_query($sql);
|
$device_query = mysql_query($sql);
|
||||||
|
|
||||||
echo("<table cellpadding=7 cellspacing=0 class=devicetable width=100%>");
|
echo("<table cellpadding=7 cellspacing=0 class=devicetable width=100%>");
|
||||||
|
|
||||||
while($device = mysql_fetch_array($device_query)) {
|
while($device = mysql_fetch_array($device_query)) {
|
||||||
if( devicepermitted($device['device_id']) || $_SESSION['userlevel'] >= '5' ) {
|
if( devicepermitted($device['device_id']) ) {
|
||||||
$device['uptime'] = @mysql_result(mysql_query("SELECT `attrib_value` FROM `devices_attribs` WHERE `device_id` = '" . $device['device_id'] ."' AND `attrib_type` = 'uptime'"), 0);
|
$device['uptime'] = @mysql_result(mysql_query("SELECT `attrib_value` FROM `devices_attribs` WHERE `device_id` = '" . $device['device_id'] ."' AND `attrib_type` = 'uptime'"), 0);
|
||||||
include("includes/hostbox.inc");
|
include("includes/hostbox.inc");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,8 +92,8 @@ function strgen ($length = 16)
|
|||||||
return $string;
|
return $string;
|
||||||
}
|
}
|
||||||
|
|
||||||
function billpermitted($bill_id) {
|
function billpermitted($bill_id)
|
||||||
|
{
|
||||||
global $_SESSION;
|
global $_SESSION;
|
||||||
if($_SESSION['userlevel'] >= "5") {
|
if($_SESSION['userlevel'] >= "5") {
|
||||||
$allowed = TRUE;
|
$allowed = TRUE;
|
||||||
@@ -112,21 +112,26 @@ function interfacepermitted($interface_id)
|
|||||||
global $_SESSION;
|
global $_SESSION;
|
||||||
if($_SESSION['userlevel'] >= "5") {
|
if($_SESSION['userlevel'] >= "5") {
|
||||||
$allowed = TRUE;
|
$allowed = TRUE;
|
||||||
} elseif ( devicepermitted(mysql_result(mysql_query("SELECT device_id FROM interfaces WHERE interface_id = '$interface_id'"),0))) {
|
} elseif ( devicepermitted(mysql_result(mysql_query("SELECT `device_id` FROM `interfaces` WHERE `interface_id` = '$interface_id'"),0))) {
|
||||||
$allowed = TRUE;
|
$allowed = TRUE;
|
||||||
} elseif ( @mysql_result(mysql_query("SELECT interface_id FROM interfaces_perms WHERE `user_id` = '" . $_SESSION['user_id'] . "' AND `interface_id` = $interface_id"), 0)) {
|
} elseif ( @mysql_result(mysql_query("SELECT `interface_id` FROM `interfaces_perms` WHERE `user_id` = '" . $_SESSION['user_id'] . "' AND `interface_id` = $interface_id"), 0)) {
|
||||||
$allowed = TRUE;
|
$allowed = TRUE;
|
||||||
} else { $allowed = FALSE; }
|
} else {
|
||||||
|
$allowed = FALSE;
|
||||||
|
}
|
||||||
return $allowed;
|
return $allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
function devicepermitted($device_id)
|
function devicepermitted($device_id)
|
||||||
{
|
{
|
||||||
global $_SESSION;
|
global $_SESSION;
|
||||||
if($_SESSION['userlevel'] >= "5") { $allowed = true;
|
if($_SESSION['userlevel'] >= "5") {
|
||||||
|
$allowed = true;
|
||||||
} elseif ( @mysql_result(mysql_query("SELECT * FROM devices_perms WHERE `user_id` = '" . $_SESSION['user_id'] . "' AND `device_id` = $device_id"), 0) > '0' ) {
|
} elseif ( @mysql_result(mysql_query("SELECT * FROM devices_perms WHERE `user_id` = '" . $_SESSION['user_id'] . "' AND `device_id` = $device_id"), 0) > '0' ) {
|
||||||
$allowed = true;
|
$allowed = true;
|
||||||
} else { $allowed = false; }
|
} else {
|
||||||
|
$allowed = false;
|
||||||
|
}
|
||||||
return $allowed;
|
return $allowed;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user