applications/openvpn: properly handle invalid names when defining new instances
This commit is contained in:
parent
59d70787b4
commit
f72c9704ae
1 changed files with 12 additions and 8 deletions
|
@ -53,6 +53,7 @@ function s.create(self, name)
|
|||
self.sectiontype .. ".select"
|
||||
)
|
||||
|
||||
if name and not name:match("[^a-zA-Z0-9_]") then
|
||||
uci:section(
|
||||
"openvpn", "openvpn", name,
|
||||
uci:get_all( "openvpn_recipes", recipe )
|
||||
|
@ -63,6 +64,9 @@ function s.create(self, name)
|
|||
uci:save("openvpn")
|
||||
|
||||
luci.http.redirect( self.extedit:format(name) )
|
||||
else
|
||||
self.invalid_cts = true
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue