diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-07 10:01:04 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-07 10:01:04 +0000 |
commit | 0013ccf17b4d68d9e9fbf13cde5678cf806d0a45 (patch) | |
tree | 2bd4047ddbbf896aa6ea35cfad565a0eca42743c /usr | |
parent | 2c01f4a5f92f6e91d9a00a0c1726b5c417fb183e (diff) | |
download | pfsense-0013ccf17b4d68d9e9fbf13cde5678cf806d0a45.zip pfsense-0013ccf17b4d68d9e9fbf13cde5678cf806d0a45.tar.gz |
Do not show Click Enable... when auto upgrading.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/system_firmware.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr/local/www/system_firmware.php b/usr/local/www/system_firmware.php index 1ddddae..ca16945 100755 --- a/usr/local/www/system_firmware.php +++ b/usr/local/www/system_firmware.php @@ -175,13 +175,14 @@ print_info_box($sig_warning); </form> <?php else: ?> <?php if (!file_exists($d_firmwarelock_path)): ?> +<form action="system_firmware.php" method="post" enctype="multipart/form-data"> +<?php if($savemsg == ""): ?> <p>Click "Enable firmware upload" below, then choose the image file (<?=$g['platform'];?>-*.img) to be uploaded.<br>Click "Upgrade firmware" to start the upgrade process.</p> - <form action="system_firmware.php" method="post" enctype="multipart/form-data"> + <table width="100%" border="0" cellpadding="6" cellspacing="0"> -<?php if($savemsg == ""): ?> <tr> <td width="22%" valign="top"> </td> <td width="78%"> @@ -220,9 +221,9 @@ print_info_box($sig_warning); <br> <a href="system_firmware.php?autoupgrade=true">Invoke Auto Upgrade</a> </tr> - -<?php endif ?> </table> +<?php endif ?> + </form> <?php endif; endif; ?> <?php include("fend.inc"); ?> |