diff options
author | Dirk Brenken <dev@brenken.org> | 2018-03-08 10:21:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 10:21:01 +0100 |
commit | 4f04e6126ecae11df3cc0e71a4ae74f1cb1543fe (patch) | |
tree | 44f675b93fdea179f526830fe07049be1ed92fd7 | |
parent | 5949c2cea82a2b636ce55ac87c7947ee918c36ce (diff) | |
parent | ff7bdab68a8df950f002e9cddbcf1b4d8cca4007 (diff) |
Merge pull request #1671 from dibdot/travelmate
luci-app-travelmate: remove qrencode short options
-rw-r--r-- | applications/luci-app-travelmate/luasrc/view/travelmate/ap_qr.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/ap_qr.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/ap_qr.htm index e6e4ede5a..13342a3e6 100644 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/ap_qr.htm +++ b/applications/luci-app-travelmate/luasrc/view/travelmate/ap_qr.htm @@ -45,7 +45,7 @@ This is free software, licensed under the Apache License, Version 2.0 local e_key = string.gsub(key,"[\"\\';:, ]",[[\\\%1]]) local qrcode = "" if nixio.fs.access("/usr/bin/qrencode") then - qrcode = luci.sys.exec("/usr/bin/qrencode -I -t SVG -8 -o - 'WIFI:S:\"'" .. e_ssid .. "'\";T:'" .. enc .. "';P:\"'" .. e_key .. "'\";H:'" .. hidden .. "';'") + qrcode = luci.sys.exec("/usr/bin/qrencode --inline --8bit --type=SVG --output=- 'WIFI:S:\"'" .. e_ssid .. "'\";T:'" .. enc .. "';P:\"'" .. e_key .. "'\";H:'" .. hidden .. "';'") end -%> <fieldset class="cbi-section"> |