From: Dirk Brenken Date: Tue, 23 Oct 2018 21:16:38 +0000 (+0200) Subject: luci-app-openvpn: file name fix X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c20a6914316637a0c04aae215bcd135e2f22db0d;p=oweals%2Fluci.git luci-app-openvpn: file name fix * fix shellquote oversight of the last commit Signed-off-by: Dirk Brenken --- diff --git a/applications/luci-app-openvpn/luasrc/controller/openvpn.lua b/applications/luci-app-openvpn/luasrc/controller/openvpn.lua index 2c153c4cd..61592d0fa 100644 --- a/applications/luci-app-openvpn/luasrc/controller/openvpn.lua +++ b/applications/luci-app-openvpn/luasrc/controller/openvpn.lua @@ -18,7 +18,7 @@ function ovpn_upload() local util = require("luci.util") local uci = require("luci.model.uci").cursor() local upload = http.formvalue("ovpn_file") - local name = util.shellquote(http.formvalue("instance_name2")) + local name = string.gsub(util.shellquote(http.formvalue("instance_name2")), "'", "") local file = "/etc/openvpn/" ..name.. ".ovpn" if name and upload then