summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dnsmasq-model.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/dnsmasq-model.lua b/dnsmasq-model.lua
index 519fa89..3625cf8 100644
--- a/dnsmasq-model.lua
+++ b/dnsmasq-model.lua
@@ -195,9 +195,7 @@ function getconfig()
output.dhcp_host = cfe({ type="list", value=conf["dhcp-host"] or {}, label="DHCP Host Parameter", descr="List of per host parameters for the DHCP server. See dnsmasq documentation." })
output.dhcp_option = cfe({ type="list", value=conf["dhcp-option"] or {}, label="DHCP Option", descr="List of different or extra options to DHCP clients. See dnsmasq documentation." })
output.mx_host = cfe({ type="list", value=conf["mx-host"] or {}, label="MX Record", descr="List of MX records 'mx_name,hostname'." })
-
- -- APP.logevent(html.cfe_unpack(output))
-
+
return cfe({ type="group", value=output, label="DNS Masq Config" })
end