diff options
author | Bill Marquette <billm@pfsense.org> | 2005-06-13 04:22:36 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-06-13 04:22:36 +0000 |
commit | 4c0eaa7f1af2222f190390f652038902e6c1ed8a (patch) | |
tree | 0d10523a967dfba84548fa8f8fe8dd737490a6a2 /usr | |
parent | bb917415baf7b95dc73befa8e3a5ed0dfc86dcf5 (diff) | |
download | pfsense-4c0eaa7f1af2222f190390f652038902e6c1ed8a.zip pfsense-4c0eaa7f1af2222f190390f652038902e6c1ed8a.tar.gz |
revert last commit - the JS isn't ready for this yet
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_shaper_queues.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/usr/local/www/firewall_shaper_queues.php b/usr/local/www/firewall_shaper_queues.php index a8984e0..0ee42b9 100755 --- a/usr/local/www/firewall_shaper_queues.php +++ b/usr/local/www/firewall_shaper_queues.php @@ -113,7 +113,6 @@ if ($_GET['act'] == "del") { <?php include("fbegin.inc"); ?> <p class="pgtitle">Firewall: Traffic shaper: Queues</p> <form action="firewall_shaper_queues.php" method="post"> -<script type="text/javascript" language="javascript" src="row_toggle.js"> <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if ($savemsg) print_info_box($savemsg); ?> <?php if (file_exists($d_shaperconfdirty_path)): ?><p> @@ -142,10 +141,10 @@ if ($_GET['act'] == "del") { </tr> <?php $i = 0; foreach ($a_queues as $queue): ?> <tr valign="top"> - <td class="listlr" onClick="fr_toggle(<?=$i;?>)" id="frd<?=$i;?>" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> + <td class="listlr" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> <?=($i+1);?> </td> - <td class="listlr" onClick="fr_toggle(<?=$i;?>)" id="frd<?=$i;?>" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> + <td class="listlr" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> <?php if($queue['red'] <> "") echo " RED"; if($queue['rio'] <> "") echo " RIO"; @@ -155,10 +154,10 @@ if ($_GET['act'] == "del") { ?> </td> - <td class="listr" onClick="fr_toggle(<?=$i;?>)" id="frd<?=$i;?>" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> + <td class="listr" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> <?=$queue['priority'];?> </td> - <td class="listr" onClick="fr_toggle(<?=$i;?>)" id="frd<?=$i;?>" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> + <td class="listr" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> <?php if($queue['defaultqueue'] <> "") { echo "Yes"; @@ -167,11 +166,11 @@ if ($_GET['act'] == "del") { } ?> </td> - <td class="listr" onClick="fr_toggle(<?=$i;?>)" id="frd<?=$i;?>" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> + <td class="listr" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> <?=htmlspecialchars($queue['bandwidth']);?> <?=htmlspecialchars($queue['bandwidthtype']);?> </td> - <td class="listbg" onClick="fr_toggle(<?=$i;?>)" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> + <td class="listbg" ondblclick="document.location='firewall_shaper_queues_edit.php?id=<?=$i;?>';"> <font color="#FFFFFF"><?=htmlspecialchars($queue['name']);?> </td> |