diff options
author | Ermal Luçi <eri@pfsense.org> | 2008-12-21 22:00:36 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2008-12-21 22:00:36 +0000 |
commit | 4e8a0417a90efaa25508c407a5efd6a8d23667e3 (patch) | |
tree | 648be5d3e9044dc8bbc9f3f7a7912f62514435b8 | |
parent | abd528b7653a77cdbf1494d93bf3e238321d0ac3 (diff) | |
download | pfsense-4e8a0417a90efaa25508c407a5efd6a8d23667e3.zip pfsense-4e8a0417a90efaa25508c407a5efd6a8d23667e3.tar.gz |
Use propper functions.
-rwxr-xr-x | usr/local/www/firewall_shaper_layer7.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/firewall_shaper_layer7.php b/usr/local/www/firewall_shaper_layer7.php index 997934a..6ce931c 100755 --- a/usr/local/www/firewall_shaper_layer7.php +++ b/usr/local/www/firewall_shaper_layer7.php @@ -43,9 +43,9 @@ $avail_structures = array("action","queue","limiter"); // Available behaviours
$avail_behaviours_action = array("block");
read_altq_config();
-$avail_behaviours_altq = get_altq_name_list();
+$avail_behaviours_altq = get_unique_queue_list();
read_dummynet_config();
-$avail_behaviours_limiter = get_dummynet_name_list();
+$avail_behaviours_limiter = get_unique_dnqueue_list();
$show_proto_form = false;
@@ -589,4 +589,4 @@ include("fbegin.inc"); <?php include("fend.inc");
?>
</body>
-</html>
\ No newline at end of file +</html> |