From ab873ccddf2a5d4a9ee76faae31556234a93cb83 Mon Sep 17 00:00:00 2001 From: Ermal Date: Sun, 27 Jan 2013 15:52:44 +0000 Subject: [PATCH] Catch up with code change. Pointy-hat: myself --- etc/inc/pfsense-utils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 42d4479194..9cfc86a938 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -1083,7 +1083,7 @@ function is_dhcpv6_server_enabled() { return false; foreach ($config['dhcpdv6'] as $dhcpv6if => $dhcpv6ifconf) { - if (isset($dhcpv6ifconf['enable']) && isset($Iflist[$dhcpv6if])) + if (isset($dhcpv6ifconf['enable']) && !empty($config['interfaces'][$dhcpv6if])) return true; }