Skip to content

Commit

Permalink
Correction on ajax includes
Browse files Browse the repository at this point in the history
  • Loading branch information
wilpig committed Jul 17, 2012
1 parent 6087d83 commit 5a43a9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions devices.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ function setPreferredLayout() {<?php if(isset($_COOKIE["layout"]) && strtolower(
<h2><?php echo $config->ParameterArray['OrgName']; ?></h2>
<h3>Data Center Device Detail</h3>
<div class="center"><div>
<div id="positionselector"></div>
<form name="deviceform" id="deviceform" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<div class="left">
<fieldset>
Expand Down
4 changes: 2 additions & 2 deletions scripts/ajax_cabinetuse.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
require_once( "db.inc.php" );
require_once( "facilities.inc.php" );
require_once( "../db.inc.php" );
require_once( "../facilities.inc.php" );

$user=new User();
$user->UserID=$_SERVER["REMOTE_USER"];
Expand Down
4 changes: 2 additions & 2 deletions scripts/ajax_search.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
require_once( "db.inc.php" );
require_once( "facilities.inc.php" );
require_once( "../db.inc.php" );
require_once( "../facilities.inc.php" );

$user=new User();
$user->UserID = $_SERVER["REMOTE_USER"];
Expand Down

0 comments on commit 5a43a9f

Please sign in to comment.