aboutsummaryrefslogtreecommitdiffstats
path: root/config/unbound
diff options
context:
space:
mode:
authorWarren Baker <warren@decoy.co.za>2011-09-29 22:50:31 +0200
committerWarren Baker <warren@decoy.co.za>2011-09-29 22:50:31 +0200
commit63b21977b98eec6857eb112fbfd3a3267717e3f7 (patch)
treec42116ecd480beaa9b44169d30990672cda5fbd2 /config/unbound
parentdf75910df06941921b7bbb2f0ccc71168d587f12 (diff)
downloadpfsense-packages-63b21977b98eec6857eb112fbfd3a3267717e3f7.tar.gz
pfsense-packages-63b21977b98eec6857eb112fbfd3a3267717e3f7.tar.bz2
pfsense-packages-63b21977b98eec6857eb112fbfd3a3267717e3f7.zip
Swop order for select list
Diffstat (limited to 'config/unbound')
-rw-r--r--config/unbound/unbound_acls.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/unbound/unbound_acls.php b/config/unbound/unbound_acls.php
index b60de2dd..40f21595 100644
--- a/config/unbound/unbound_acls.php
+++ b/config/unbound/unbound_acls.php
@@ -203,7 +203,7 @@ if ($savemsg)
<td width="22%" valign="top" class="vncellreq"><?=gettext("Action");?></td>
<td width="78%" class="vtable">
<select name="aclaction" class="formselect">
- <?php $types = explode(",", "Deny,Refuse,Allow,Allow Snoop"); foreach ($types as $type): ?>
+ <?php $types = explode(",", "Allow,Deny,Refuse,Allow Snoop"); foreach ($types as $type): ?>
<option value="<?=strtolower($type);?>" <?php if (strtolower($type) == strtolower($pconfig['aclaction'])) echo "selected"; ?>>
<?=htmlspecialchars($type);?>
</option>