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:
Adam Amstrong
2010-02-20 17:37:42 +00:00
parent caab3ee1c4
commit e227df8ef2
18 changed files with 13 additions and 13 deletions

View File

@@ -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");
}
}

View File

@@ -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");
}
}

View File

@@ -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>");

View File

@@ -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");
}
}

View File

@@ -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);