From: Jo-Philipp Wich Date: Wed, 1 Dec 2010 20:03:13 +0000 (+0000) Subject: modules/admin-full: hide rdate if not present in config X-Git-Tag: 0.10.0~332 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=9be4231a10d6482282ed7f290b9b30ec49558d1a;ds=sidebyside modules/admin-full: hide rdate if not present in config --- diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/system.lua b/modules/admin-full/luasrc/model/cbi/admin_system/system.lua index 891e48ea8..f30443768 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/system.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/system.lua @@ -27,11 +27,6 @@ function m.on_parse() has_rdate = true return false end) - - if not has_rdate then - m.uci:section("system", "rdate", nil, { }) - m.uci:save("system") - end end @@ -100,10 +95,12 @@ s:option(Value, "log_port", translate("External system log server port")).option s:option(Value, "conloglevel", translate("Log output level")).optional = true s:option(Value, "cronloglevel", translate("Cron Log Level")).optional = true -s2 = m:section(TypedSection, "rdate", translate("Time Server (rdate)")) -s2.anonymous = true -s2.addremove = false +if has_rdate then + s2 = m:section(TypedSection, "rdate", translate("Time Server (rdate)")) + s2.anonymous = true + s2.addremove = false -s2:option(DynamicList, "server", translate("Server")) + s2:option(DynamicList, "server", translate("Server")) +end return m