diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-03-11 00:03:21 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-03-11 00:03:21 +0000 |
commit | ca0a985f28b2c532bb7655765e9a407da9668e48 (patch) | |
tree | 9923c5950fdeaea143628dc256e2d5acc4c31c50 /usr/local | |
parent | 6e0f3899e8fcbfc6e7d857f272f706f91bacfd50 (diff) | |
download | pfsense-ca0a985f28b2c532bb7655765e9a407da9668e48.zip pfsense-ca0a985f28b2c532bb7655765e9a407da9668e48.tar.gz |
Increase wait time to 20 seconds to give slower platforms a chance to catch up
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/system.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/system.php b/usr/local/www/system.php index 78d0675..62581ce 100755 --- a/usr/local/www/system.php +++ b/usr/local/www/system.php @@ -169,7 +169,7 @@ if ($_POST) { $savemsg = get_std_save_message($retval); if ($restart_webgui) - $savemsg .= "<br />One moment...redirecting to {$url} in 10 seconds."; + $savemsg .= "<br />One moment...redirecting to {$url} in 20 seconds."; } } @@ -280,7 +280,7 @@ include("head.inc"); <?php // restart webgui if proto or port changed if ($restart_webgui) { - echo "<meta http-equiv=\"refresh\" content=\"10;url={$url}\">"; + echo "<meta http-equiv=\"refresh\" content=\"20;url={$url}\">"; } ob_flush(); flush(); |