mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fixed bug with not unsetting deleted status for ports
git-svn-id: http://www.observium.org/svn/observer/trunk@870 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -55,7 +55,7 @@ if($_GET['optc'] == thumbs) {
|
||||
if($_GET['opta'] == "details" ) { $port_details = 1; }
|
||||
echo("<div style='margin: 5px;'><table border=0 cellspacing=0 cellpadding=5 width=100%>");
|
||||
$i = "1";
|
||||
$interface_query = mysql_query("select * from interfaces WHERE device_id = '$_GET[id]' AND deleted = '0' ORDER BY `ifIndex` ASC");
|
||||
$interface_query = mysql_query("select * from interfaces WHERE device_id = '".$device['device_id']."' AND deleted = '0' ORDER BY `ifIndex` ASC");
|
||||
while($interface = mysql_fetch_array($interface_query)) {
|
||||
include("includes/print-interface.inc.php");
|
||||
$i++;
|
||||
|
Reference in New Issue
Block a user