diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-02-09 14:14:44 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-02-09 14:14:44 -0500 |
commit | e2461a2f1dd3de3a028f5798a11c6b1a0ef7578c (patch) | |
tree | b15e1681a5ba95ac5f418902560aa6fff445ad4c /src/usr | |
parent | 7d3c67dea8d1f305da586ba980489048727d5e74 (diff) | |
download | pfsense-e2461a2f1dd3de3a028f5798a11c6b1a0ef7578c.zip pfsense-e2461a2f1dd3de3a028f5798a11c6b1a0ef7578c.tar.gz |
Fixed #5860
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/firewall_rules.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/usr/local/www/firewall_rules.php b/src/usr/local/www/firewall_rules.php index d719e7c..036e931 100644 --- a/src/usr/local/www/firewall_rules.php +++ b/src/usr/local/www/firewall_rules.php @@ -511,13 +511,17 @@ for ($i = 0; isset($a_filter[$i]); $i++): <i class="fa fa-<?=$iconfn?>" title="<?=gettext("click to toggle enabled/disabled status");?>"></i> </a> <?php + if ($filterent['quick'] == 'yes') { + print '<i class="fa fa-forward text-succcess" title="'. gettext(""Quick" rule. Applied immediately on match.") .'" style="cursor: pointer;"></i>'; + } + $isadvset = firewall_check_for_advanced_options($filterent); if ($isadvset) { print '<i class="fa fa-cog" title="'. gettext("advanced setting") .': '. $isadvset .'"></i>'; } if (isset($filterent['log'])) { - print '<i class="fa fa-tasks" title="'. gettext("traffic is logged") .'"></i>'; + print '<i class="fa fa-tasks" title="'. gettext("traffic is logged") .'" style="cursor: pointer;"></i>'; } ?> </td> |