diff options
author | Warren Baker <warren@decoy.co.za> | 2014-03-29 08:09:43 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2014-03-29 08:09:43 +0200 |
commit | 1b6e3c30fb1b48d8a7d95f4db61f93db6dce2079 (patch) | |
tree | c16820e8654eacc4c8a82abc9967f9bb02ed3f54 /usr | |
parent | 80948260a13a481a1f285f3754af32051a928b5e (diff) | |
download | pfsense-1b6e3c30fb1b48d8a7d95f4db61f93db6dce2079.zip pfsense-1b6e3c30fb1b48d8a7d95f4db61f93db6dce2079.tar.gz |
Ensure TXT support on host descriptions actually works
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/services_unbound.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/local/www/services_unbound.php b/usr/local/www/services_unbound.php index b81d60f..6487c7b 100644 --- a/usr/local/www/services_unbound.php +++ b/usr/local/www/services_unbound.php @@ -49,6 +49,7 @@ $pconfig['dnssec'] = isset($config['unbound']['dnssec']); $pconfig['forwarding'] = isset($config['unbound']['forwarding']); $pconfig['regdhcp'] = isset($config['unbound']['regdhcp']); $pconfig['regdhcpstatic'] = isset($config['unbound']['regdhcpstatic']); +$pconfig['txtsupport'] = isset($config['unbound']['txtsupport']); if(!is_array($config['unbound'])) $config['unbound'] = array(); @@ -89,6 +90,7 @@ if ($_POST) { $a_unboundcfg['forwarding'] = ($_POST['forwarding']) ? true : false; $a_unboundcfg['regdhcp'] = ($_POST['regdhcp']) ? true : false; $a_unboundcfg['regdhcpstatic'] = ($_POST['regdhcpstatic']) ? true : false; + $a_unboundcfg['txtsupport'] = ($_POST['txtsupport']) ? true : false; if (is_array($_POST['active_interface'])) $a_unboundcfg['active_interface'] = implode(",", $_POST['active_interface']); else |