diff options
author | Warren Baker <warren@decoy.co.za> | 2014-03-20 21:39:18 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2014-03-20 21:39:18 +0200 |
commit | 16da09a2112a02eb4b677f2e5a2fc03b7469cfa0 (patch) | |
tree | affdc747ccef7851f3e5b48b31b645216a8d7745 /usr/local/www | |
parent | d12889b0c2df03deb6d499f0c379005e5870b628 (diff) | |
download | pfsense-16da09a2112a02eb4b677f2e5a2fc03b7469cfa0.zip pfsense-16da09a2112a02eb4b677f2e5a2fc03b7469cfa0.tar.gz |
Fix display of port
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/services_unbound.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/services_unbound.php b/usr/local/www/services_unbound.php index 0290468..3fce7de 100644 --- a/usr/local/www/services_unbound.php +++ b/usr/local/www/services_unbound.php @@ -42,7 +42,7 @@ require_once("guiconfig.inc"); require_once("unbound.inc"); $pconfig['enable'] = isset($config['unbound']['enable']); -$pconfig['port'] = isset($config['unbound']['port']); +$pconfig['port'] = $config['unbound']['port']; $pconfig['active_interface'] = $config['unbound']['active_interface']; $pconfig['outgoing_interface'] = $config['unbound']['outgoing_interface']; $pconfig['dnssec'] = isset($config['unbound']['dnssec']); |