diff options
author | Ermal Luçi <eri@pfsense.org> | 2008-02-21 19:37:45 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2008-02-21 19:37:45 +0000 |
commit | 7f31d1f6afde8cc1491efd4296c4d50740ee278c (patch) | |
tree | b94d4a6b39102022e1e7ae2ca10686845f8ffe34 /usr | |
parent | fe93b17baff62f8a89bebe1b71ab2369f06d5442 (diff) | |
download | pfsense-7f31d1f6afde8cc1491efd4296c4d50740ee278c.zip pfsense-7f31d1f6afde8cc1491efd4296c4d50740ee278c.tar.gz |
Do not show duplicate queues names on rules edit page
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 322fc83..033d7ff 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -995,7 +995,7 @@ on another rule.")?> <?php if (!is_array($altq_list_queues)) read_altq_config(); /* XXX: */ - foreach ($GLOBALS['allqueue_list'] as $q) { + foreach ($GLOBALS['unique_qlist'] as $q) { echo "<option value=\"$q\""; if ($q == $pconfig['ackqueue']) { $qselected = 1; @@ -1011,7 +1011,7 @@ on another rule.")?> <select name="defaultqueue"> <?php $qselected = 0; - foreach ($GLOBALS['allqueue_list'] as $q) { + foreach ($GLOBALS['unique_qlist'] as $q) { echo "<option value=\"$q\""; if ($q == $pconfig['defaultqueue']) { $qselected = 1; |