From 9a1c227e875dbd91e45081ae526bd124c8e109aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ermal=20Lu=C3=A7i?= Date: Sun, 31 Aug 2008 14:42:14 +0000 Subject: [PATCH] Fix detection if an interface is part of bridge. --- usr/local/www/status_services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php index 471e9cdb4a..27b40efbbf 100755 --- a/usr/local/www/status_services.php +++ b/usr/local/www/status_services.php @@ -235,7 +235,7 @@ $iflist = array(); $ifdescrs = get_configured_interface_list(); foreach ($ifdescrs as $if) { $oc = $config['interfaces'][$if]; - if ($oc['if'] && (!$oc['bridge'])) + if ($oc['if'] && (!link_int_to_bridge_interface($if))) $iflist[$if] = $if; } $show_dhcprelay = false;