diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-13 00:32:16 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-13 00:32:16 +0000 |
commit | e444cd017d18273466ed01b145a81e2b5d66c012 (patch) | |
tree | 362c7ca4677ef57b2db69bedcae7bd5291dcb712 /usr/local/www/fbegin.inc | |
parent | 9948c4733480ffc308fc837742f90e1735ae5cc2 (diff) | |
download | pfsense-e444cd017d18273466ed01b145a81e2b5d66c012.zip pfsense-e444cd017d18273466ed01b145a81e2b5d66c012.tar.gz |
Rework how the filter reloading alert is created
Diffstat (limited to 'usr/local/www/fbegin.inc')
-rwxr-xr-x | usr/local/www/fbegin.inc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 7164437..d3456f9 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -188,17 +188,12 @@ function showhide_black(tspan, tri) { <?php /* display a top alert bar if need be */ $need_alert_display = false; - $display_text .= ""; - if(file_exists("{$g["tmp_path"]}/filter_reloading")) { - $need_alert_display = true; - $display_text .= "The filter rules are currently reloading. You will receive an alert if there is an error.<br>"; - } $found_notices = are_notices_pending(); if($found_notices == true) { $notices = get_notices(); if(!$notices) { $need_alert_display = true; - $display_text .= print_notices() . "<br>"; + $display_text = print_notices() . "<br>"; } } if($need_alert_display == true) { |