mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
rename some gui include files
git-svn-id: http://www.observium.org/svn/observer/trunk@891 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -6,7 +6,7 @@ if($_SESSION['userlevel'] < '10') {
|
||||
|
||||
if($_POST['addsrv']) {
|
||||
if($_SESSION['userlevel'] == '10') {
|
||||
include("includes/add-srv.inc");
|
||||
include("includes/service-add.inc.php");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ if($_SESSION['userlevel'] < '5') {
|
||||
|
||||
if($_POST['delsrv']) {
|
||||
if($_SESSION['userlevel'] > "5") {
|
||||
include("includes/del-srv.inc");
|
||||
include("includes/service-delete.inc.php");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ $select[$section] = "selected";
|
||||
$device_query = mysql_query("SELECT * FROM `devices` WHERE `device_id` = '" . $_GET['id'] . "'");
|
||||
while($device = mysql_fetch_array($device_query)) {
|
||||
echo('<table cellpadding="15" cellspacing="0" class="devicetable" width="100%">');
|
||||
include("includes/device-header.inc");
|
||||
include("includes/device-header.inc.php");
|
||||
echo("</table>");
|
||||
|
||||
echo("<div class=mainpane>");
|
||||
|
||||
@@ -6,7 +6,7 @@ if($_SESSION['userlevel'] < '5') {
|
||||
|
||||
if($_POST['editing']) {
|
||||
if($_SESSION['userlevel'] > "5") {
|
||||
include("includes/edit-host.inc");
|
||||
include("includes/device-edit.inc.php");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ if($_GET['opta'] == "details" ) {
|
||||
$hostname = $device['hostname'];
|
||||
#if(!is_integer($x/2)) { $device_colour = $list_colour_a; } else { $device_colour = $list_colour_b; }
|
||||
echo("<table cellpadding=7 cellspacing=0 class=devicetable width=100%>");
|
||||
include("includes/device-header.inc");
|
||||
include("includes/device-header.inc.php");
|
||||
echo("</table>");
|
||||
$ports = mysql_query("SELECT * FROM `ports` WHERE `ifVrf` = '".$device['vrf_id']."' and device_id = '".$device['device_id']."'");
|
||||
unset($seperator);
|
||||
|
||||
Reference in New Issue
Block a user