From: Steven Barth Date: Thu, 11 Sep 2008 17:24:50 +0000 (+0000) Subject: luci-ntpc: Fixed option definitions X-Git-Tag: 0.9.0~1346 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=0eb9e9805caa9c35e48ee54698fe3ce9e25b3542 luci-ntpc: Fixed option definitions --- diff --git a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua index 2b4e2c23d..06609e3a0 100644 --- a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua +++ b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua @@ -19,13 +19,13 @@ s.anonymous = true s:option(DummyValue, "_time", translate("ntpc_current")).value = os.date("%c") -s:option(Value, "interval", translate("ntpc_interval")) -s:option(Value, "count", translate("ntpc_count"), translate("ntpc_count_desc")) +s:option(Value, "interval", translate("ntpc_interval")).rmempty = true +s:option(Value, "count", translate("ntpc_count"), translate("ntpc_count_desc")).rmempty = true s2 = m:section(TypedSection, "ntpdrift", translate("ntpc_drift")) s2.anonymous = true -s2:option(Value, "freq", translate("ntpc_drift_freq")) +s2:option(Value, "freq", translate("ntpc_drift_freq")).rmempty = true s3 = m:section(TypedSection, "ntpserver", translate("ntpc_timeserver")) diff --git a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua index ecb098ab3..3493e0317 100644 --- a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua +++ b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua @@ -20,7 +20,7 @@ s.anonymous = true s:option(DummyValue, "_time", translate("ntpc_current")).value = os.date("%c") -s:option(Value, "interval", translate("ntpc_interval")) +s:option(Value, "interval", translate("ntpc_interval")).rmempty = true s3 = m:section(TypedSection, "ntpserver", translate("ntpc_timeserver"))