diff options
author | Chris Buechler <cmb@pfsense.org> | 2011-01-19 13:53:30 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2011-01-19 13:53:59 -0500 |
commit | 33a2693c75da981f3702133241a6855f79e42c1a (patch) | |
tree | 308ce5e5cf209c0444db2f2e7221a100e9d9cca8 /usr | |
parent | bcfe4ae5add1ca60e35151e225fa207f6160efd7 (diff) | |
download | pfsense-33a2693c75da981f3702133241a6855f79e42c1a.zip pfsense-33a2693c75da981f3702133241a6855f79e42c1a.tar.gz |
don't show platform here (rebrands)
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/system_firmware.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/system_firmware.php b/usr/local/www/system_firmware.php index 1b2648b..9e876c9 100755 --- a/usr/local/www/system_firmware.php +++ b/usr/local/www/system_firmware.php @@ -147,7 +147,7 @@ if ($_POST && !is_subsystem_dirty('firmwarelock')) { if (is_uploaded_file($_FILES['ulfile']['tmp_name'])) { /* verify firmware image(s) */ if (file_is_for_platform($_FILES['ulfile']['tmp_name'], $_FILES['ulfile']['name']) == false && !$_POST['sig_override']) - $input_errors[] = gettext("The uploaded image file is not for this platform") . " ({$g['platform']})"; + $input_errors[] = gettext("The uploaded image file is not for this platform."); else if (!file_exists($_FILES['ulfile']['tmp_name'])) { /* probably out of memory for the MFS */ $input_errors[] = gettext("Image upload failed (out of memory?)"); |