luci-app-mwan3: check policy name length on create
fixes #13499 Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
3d1b6a12f6
commit
8c19a2e1b8
1 changed files with 7 additions and 3 deletions
|
@ -53,9 +53,13 @@ mwan_policy.sortable = true
|
|||
mwan_policy.template = "cbi/tblsection"
|
||||
mwan_policy.extedit = dsp.build_url("admin", "network", "mwan", "policy", "%s")
|
||||
function mwan_policy.create(self, section)
|
||||
TypedSection.create(self, section)
|
||||
m.uci:save("mwan3")
|
||||
luci.http.redirect(dsp.build_url("admin", "network", "mwan", "policy", section))
|
||||
if #section > 15 then
|
||||
self.invalid_cts = true
|
||||
else
|
||||
TypedSection.create(self, section)
|
||||
m.uci:save("mwan3")
|
||||
luci.http.redirect(dsp.build_url("admin", "network", "mwan", "policy", section))
|
||||
end
|
||||
end
|
||||
|
||||
use_member = mwan_policy:option(DummyValue, "use_member", translate("Members assigned"))
|
||||
|
|
Loading…
Reference in a new issue