diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-09 02:26:13 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-09 02:26:13 +0000 |
commit | fd31bb2fcc2f0ee8d2b2684756443e17be3d4a38 (patch) | |
tree | 15d252b0addfa4768a1214761ed82c511440f4c9 /modules/admin-full/luasrc/controller/admin/system.lua | |
parent | 2fabf92cf03cde1290705c2b0041349fa3bbb827 (diff) |
modules/admin-full: fixes for upgrade pages:
- do not show a size warning if media size is unknown
- handle unsupported platforms gracefully
- i18n tag cleanup
Diffstat (limited to 'modules/admin-full/luasrc/controller/admin/system.lua')
-rw-r--r-- | modules/admin-full/luasrc/controller/admin/system.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 603103499..c7bf8370c 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -2,6 +2,7 @@ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> +Copyright 2008-2009 Jo-Philipp Wich <xm@subsignal.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -278,7 +279,8 @@ function action_upgrade() luci.template.render("admin_system/upgrade", { step=1, bad_image=(has_image and not has_support or false), - keepavail=keep_avail + keepavail=keep_avail, + supported=has_platform } ) -- Step 2: present uploaded file, show checksum, confirmation |