From 6361e183e02a9ca4db9e077620bb53fa132b1bb8 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Nov 2014 08:50:59 -0800 Subject: [PATCH] This is a workaround to show d-link port channel devices. Thanks to lafwood for this. --- includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/functions.php b/includes/functions.php index 67ac62ddec..e3fc743463 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -891,6 +891,7 @@ function is_port_valid($port, $device) } if (empty($port['ifDescr'])) { $valid = 0; } if ($device['os'] == "catos" && strstr($if, "vlan")) { $valid = 0; } + if ($device['os'] == "dlink") { $valid = 1; } } return $valid;