diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-04-20 14:07:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 14:07:38 +0200 |
commit | ddf33f7eee507a2fe42db9a2e117922d42e72dc8 (patch) | |
tree | 0e8064f820097ab58a2191eee74f12f7596d54dc /applications/luci-app-rp-pppoe-server | |
parent | 89c3cb878fe5fbcf87eda5d5664d4062c4c346dc (diff) | |
parent | f2eb7275249d3e0c5cf5cc21ec77bab885ad19ff (diff) |
Merge pull request #5770 from dacrossman/dacrossman-luci-rp-pppoe-fix
luci-app-rp-pppoe-server: use netlist template
Diffstat (limited to 'applications/luci-app-rp-pppoe-server')
-rw-r--r-- | applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua index b86b06cf1a..91e1e54532 100644 --- a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua +++ b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua @@ -13,7 +13,7 @@ s.addremove = true s.anonymous = true o = s:option(Value, "interface", translate("Interface"), translate("Interface on which to listen.")) -o.template = "cbi/network_ifacelist" +o.template = "cbi/network_netlist" o.nocreate = true o = s:option(Value, "ac_name", translate("Access Concentrator Name")) |