diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-08-15 22:37:39 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-08-15 22:37:39 +0000 |
commit | 6efc896dc8b15debe9f8f31be2a8e819e4fa6f93 (patch) | |
tree | 66ff32cf1ec68164f2dbd0dfd02d537daca2285b /usr/local | |
parent | 47ce7fe8a58a90b1659e47a8122e102051bc143b (diff) | |
download | pfsense-6efc896dc8b15debe9f8f31be2a8e819e4fa6f93.zip pfsense-6efc896dc8b15debe9f8f31be2a8e819e4fa6f93.tar.gz |
Alert user that reboot will happen afterwards
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/system_firmware.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr/local/www/system_firmware.php b/usr/local/www/system_firmware.php index d7e8401..68c1030 100755 --- a/usr/local/www/system_firmware.php +++ b/usr/local/www/system_firmware.php @@ -38,10 +38,12 @@ require_once("xmlrpc_client.inc"); if(file_exists($d_firmwarelock_path)) { $pgtitle = "System: Firmware: Manual Update"; include("head.inc"); - echo "<body link=\"#0000CC\" vlink=\"#0000CC\" alink=\"#0000CC\">"; + echo "<body link=\"#0000CC\" vlink=\"#0000CC\" alink=\"#0000CC\">\n"; include("fbegin.inc"); - echo "<p class=\"pgtitle\"><?=$pgtitle?></p>"; - echo "A upgrade is currently in progress."; + echo "<p class=\"pgtitle\"><?=$pgtitle?></p>\n"; + echo "<div>\n"; + echo "A upgrade is currently in progress.<p>The firewall will reboot when the operation is complete.\n"; + echo "</div>\n"; include("fend.inc"); echo "</body>"; echo "</html>"; |