luci-ntpc: Fixed option definitions
authorSteven Barth <steven@midlink.org>
Thu, 11 Sep 2008 17:24:50 +0000 (17:24 +0000)
committerSteven Barth <steven@midlink.org>
Thu, 11 Sep 2008 17:24:50 +0000 (17:24 +0000)
applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua
applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua

index 2b4e2c2..06609e3 100644 (file)
@@ -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"))
index ecb098a..3493e03 100644 (file)
@@ -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"))