summaryrefslogtreecommitdiffstats
path: root/usr/local/www
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-08-13 05:21:31 +0000
committerBill Marquette <billm@pfsense.org>2005-08-13 05:21:31 +0000
commit453afca05edd596d1dcdffe5310d7a92d73d1b37 (patch)
treec337e61d4d832235f8d9a50a1c1cf40e95d07ac2 /usr/local/www
parent68a9575859be0338b7e14aea382aa25e4f00db32 (diff)
downloadpfsense-453afca05edd596d1dcdffe5310d7a92d73d1b37.zip
pfsense-453afca05edd596d1dcdffe5310d7a92d73d1b37.tar.gz
Fix ticket #330
$ack is always set, just might not be true ;)
Diffstat (limited to 'usr/local/www')
-rwxr-xr-xusr/local/www/firewall_shaper_queues_edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_shaper_queues_edit.php b/usr/local/www/firewall_shaper_queues_edit.php
index 05b7bb8..6f3ff2b 100755
--- a/usr/local/www/firewall_shaper_queues_edit.php
+++ b/usr/local/www/firewall_shaper_queues_edit.php
@@ -242,7 +242,7 @@ include("head.inc");
<?php if ($schedulertype == "cbq"): ?>
<input type="checkbox" id="borrow" name="borrow" <?php if($borrow) echo " CHECKED";?> > Borrow from other queues when available<br>
<? endif; ?>
- <input type="checkbox" id="ack" name="ack" <?php if(isset($ack)) echo " CHECKED";?> > ACK/low-delay queue. At least one queue per interface should have this checked.<br>
+ <input type="checkbox" id="ack" name="ack" <?php if($ack) echo " CHECKED";?> > ACK/low-delay queue. At least one queue per interface should have this checked.<br>
<input type="checkbox" id="red" name="red" <?php if($red) echo " CHECKED";?> > <a target="_new" href="http://www.openbsd.org/faq/pf/queueing.html#red">Random Early Detection</a><br>
<input type="checkbox" id="rio" name="rio" <?php if($rio) echo " CHECKED";?> > <a target="_new" href="http://www.openbsd.org/faq/pf/queueing.html#red">Random Early Detection In and Out</a><br>
<input type="checkbox" id="ecn" name="ecn" <?php if($ecn) echo " CHECKED";?> > <a target="_new" href="http://www.openbsd.org/faq/pf/queueing.html#ecn">Explicit Congestion Notification</a><br>
OpenPOWER on IntegriCloud