diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-03 12:00:56 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-03 12:00:56 +0000 |
commit | d6c94ae69c037355a6aa865544a78346de6761a4 (patch) | |
tree | b0a6029a17f9411aaf396a4525f2bb50f6e318f7 | |
parent | bf61a13e30e21f1a5355e9f5464670b628438cfc (diff) |
* luci/app/hd_idle: fix error in cbi model
-rw-r--r-- | applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua b/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua index f7040a551..e880aaf63 100644 --- a/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua +++ b/applications/luci-hd_idle/luasrc/model/cbi/hd_idle.lua @@ -23,7 +23,8 @@ s.anonymous = true s:option(Flag, "enabled", translate("enabled", "Enable")) -disk = s:option(Value, "disk", translate("disk")).rmempty = true +disk = s:option(Value, "disk", translate("disk")) +disk.rmempty = true for _, dev in ipairs(luci.fs.glob("/dev/[sh]d[a-z]")) do disk:value(luci.fs.basename(dev)) end |