diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-10 19:41:19 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-10 19:41:19 +0000 |
commit | 32dd4d1fd3261cf0cfe6ae76461f38e321b53245 (patch) | |
tree | 84e9379182d5e1e5ec24f835663486b83c2b30d2 /usr/local | |
parent | 59c8d575fa6cbb749f1aee4a552900b7a1e9386d (diff) | |
download | pfsense-32dd4d1fd3261cf0cfe6ae76461f38e321b53245.zip pfsense-32dd4d1fd3261cf0cfe6ae76461f38e321b53245.tar.gz |
Simply use print_info_box_np() when telling user about the background reload operation
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/index.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr/local/www/index.php b/usr/local/www/index.php index 2bd541d..8931049 100755 --- a/usr/local/www/index.php +++ b/usr/local/www/index.php @@ -58,9 +58,6 @@ if(file_exists("/trigger_initial_wizard")) { $pgtitle = "pfSense first time setup"; include("head.inc"); -if(file_exists("{$g["tmp_path"]}/filter_reloading")) - file_notice("Filter load in progress", "The filter rules are currently reloading. An alert will be sent if there is an error.", "", ""); - ?> <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <form> @@ -160,6 +157,11 @@ include("head.inc"); <br> <?php print_notice_box(); + + if(file_exists("{$g["tmp_path"]}/filter_reloading")) + print_info_box_np("The filter rules are currently reloading. You will receive an alert if there is an error."); + + ?> <br> <div id="niftyOutter" width="650"> |