aboutsummaryrefslogtreecommitdiffstats
path: root/config/unbound
diff options
context:
space:
mode:
authorWarren Baker <warren@decoy.co.za>2014-02-25 13:06:11 +0200
committerWarren Baker <warren@decoy.co.za>2014-02-25 13:06:11 +0200
commit8bab20fbace01683584b77413b752cc5ccbe0233 (patch)
tree9301d08958b91ed40e2a79bce8decbcb49ff8bcf /config/unbound
parent9d7a251d4e388b66987c2869773f52144e71db84 (diff)
downloadpfsense-packages-8bab20fbace01683584b77413b752cc5ccbe0233.tar.gz
pfsense-packages-8bab20fbace01683584b77413b752cc5ccbe0233.tar.bz2
pfsense-packages-8bab20fbace01683584b77413b752cc5ccbe0233.zip
Missed this variable name change and bump version for all previous changes
Diffstat (limited to 'config/unbound')
-rw-r--r--config/unbound/unbound.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/config/unbound/unbound.inc b/config/unbound/unbound.inc
index d8520390..f38aebb1 100644
--- a/config/unbound/unbound.inc
+++ b/config/unbound/unbound.inc
@@ -572,11 +572,10 @@ EOD;
# Handle custom options
if (!empty($adv_config['custom_options'])) {
- $custom_options = explode(";", ($unbound_config['custom_options']));
+ $custom_options = explode(";", ($adv_config['custom_options']));
$unbound_conf .= "\n# Unbound Custom options\n";
- foreach ($custom_options as $ent) {
+ foreach ($custom_options as $ent)
$unbound_conf .= $ent."\n";
- }
}
$unbound_conf .= <<<EOD