diff options
author | NOYB <Al_Stu@Frontier.com> | 2016-01-05 08:11:08 -0800 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-01-25 17:02:58 -0800 |
commit | e57597233257ee30882bd48ced150f1173b558ab (patch) | |
tree | 479d7ea9f4dfa84339b5d62ca875f5f9edc13e90 /src/usr | |
parent | 3756fd860385c98a890e3b8315bf50448095c3bb (diff) | |
download | pfsense-e57597233257ee30882bd48ced150f1173b558ab.zip pfsense-e57597233257ee30882bd48ced150f1173b558ab.tar.gz |
Break long line of local zone types list.
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/services_unbound.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/usr/local/www/services_unbound.php b/src/usr/local/www/services_unbound.php index c352875..cb39041 100644 --- a/src/usr/local/www/services_unbound.php +++ b/src/usr/local/www/services_unbound.php @@ -311,7 +311,17 @@ $section->addInput(new Form_Select( true ))->addClass('general')->setHelp('Utilize different network interface(s) that the DNS Resolver will use to send queries to authoritative servers and receive their replies. By default all interfaces are used.'); -$unbound_local_zone_types = array("deny" => gettext("Deny"), "refuse" => gettext("Refuse"), "static" => gettext("Static"), "transparent" => gettext("Transparent"), "typetransparent" => gettext("Type Transparent"), "redirect" => gettext("Redirect"), "inform" => gettext("Inform"), "inform_deny" => gettext("Inform Deny"), "nodefault" => gettext("No Default")); +$unbound_local_zone_types = array( + "deny" => gettext("Deny"), + "refuse" => gettext("Refuse"), + "static" => gettext("Static"), + "transparent" => gettext("Transparent"), + "typetransparent" => gettext("Type Transparent"), + "redirect" => gettext("Redirect"), + "inform" => gettext("Inform"), + "inform_deny" => gettext("Inform Deny"), + "nodefault" => gettext("No Default" +)); $section->addInput(new Form_Select( 'system_domain_local_zone_type', |