diff options
author | Warren Baker <warren@decoy.co.za> | 2011-09-29 22:50:31 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2011-09-29 22:50:31 +0200 |
commit | 63b21977b98eec6857eb112fbfd3a3267717e3f7 (patch) | |
tree | c42116ecd480beaa9b44169d30990672cda5fbd2 | |
parent | df75910df06941921b7bbb2f0ccc71168d587f12 (diff) | |
download | pfsense-packages-63b21977b98eec6857eb112fbfd3a3267717e3f7.tar.gz pfsense-packages-63b21977b98eec6857eb112fbfd3a3267717e3f7.tar.bz2 pfsense-packages-63b21977b98eec6857eb112fbfd3a3267717e3f7.zip |
Swop order for select list
-rw-r--r-- | config/unbound/unbound_acls.php | 2 |
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> |