diff options
author | Scott Ullrich <sullrich@gmail.com> | 2011-07-23 18:25:00 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@gmail.com> | 2011-07-23 18:25:00 -0400 |
commit | 5fec5fe4c399b8e7678cdc67ec69e856223f7040 (patch) | |
tree | 96cc174831162adc2bfd95fd2db22542363ec555 /usr/local/www | |
parent | 7c1e7572b7ef8dbd8e95a58da797bf45835c5b97 (diff) | |
download | pfsense-5fec5fe4c399b8e7678cdc67ec69e856223f7040.zip pfsense-5fec5fe4c399b8e7678cdc67ec69e856223f7040.tar.gz |
Add hook and fix style for anti lockout
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/firewall_rules.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr/local/www/firewall_rules.php b/usr/local/www/firewall_rules.php index 128dcf2..e1adc7d 100755 --- a/usr/local/www/firewall_rules.php +++ b/usr/local/www/firewall_rules.php @@ -346,10 +346,10 @@ if($_REQUEST['undodrag']) { <tr id="frheader"> <td width="3%" class="list"> </td> <td width="5%" class="list"> </td> + <td width="3%" class="listhdrr"><?=gettext("ID");?></td> <?php pfSense_handle_custom_code("/usr/local/pkg/firewall_rules/pre_id_tablehead"); ?> - <td width="3%" class="listhdrr"><?=gettext("ID");?></td> <td width="6%" class="listhdrr"><?=gettext("Proto");?></td> <td width="12%" class="listhdrr"><?=gettext("Source");?></td> <td width="6%" class="listhdrr"><?=gettext("Port");?></td> @@ -409,6 +409,9 @@ if($_REQUEST['undodrag']) { <td class="list"> </td> <td class="listt" align="center"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_pass.gif" width="11" height="11" border="0"></td> <td class="listlr" style="background-color: #E0E0E0"></td> +<?php + pfSense_handle_custom_code("/usr/local/pkg/firewall_rules/pre_id_tr_antilockout"); +?> <td class="listr" style="background-color: #E0E0E0">*</td> <td class="listr" style="background-color: #E0E0E0">*</td> <td class="listr" style="background-color: #E0E0E0">*</td> @@ -501,7 +504,6 @@ if($_REQUEST['undodrag']) { $advanced_set = "<img src=\"./themes/{$g['theme']}/images/icons/icon_advanced.gif\" title=\"" . gettext("advanced settings set") . ": {$isadvset}\" border=\"0\">"; else $advanced_set = ""; - pfSense_handle_custom_code("/usr/local/pkg/firewall_rules/pre_id_tablerow"); ?> <tr valign="top" id="fr<?=$nrules;?>"> <td class="listt"> @@ -690,11 +692,13 @@ if($_REQUEST['undodrag']) { $printicon = true; } } - pfSense_handle_custom_code("/usr/local/pkg/firewall_rules/pre_id_tr"); ?> <td class="listlr" onClick="fr_toggle(<?=$nrules;?>)" id="frd<?=$nrules;?>" ondblclick="document.location='firewall_rules_edit.php?id=<?=$i;?>';"> <?=$textss;?><?php if (isset($filterent['id'])) echo $filterent['id']; else echo ""; ?><?=$textse;?> </td> +<?php + pfSense_handle_custom_code("/usr/local/pkg/firewall_rules/pre_id_tr"); +?> <td class="listr" onClick="fr_toggle(<?=$nrules;?>)" id="frd<?=$nrules;?>" ondblclick="document.location='firewall_rules_edit.php?id=<?=$i;?>';"> <?=$textss;?><?php if (isset($filterent['ipprotocol'])) { |