aboutsummaryrefslogtreecommitdiffstats
path: root/filters/simple-authentication.lua
diff options
context:
space:
mode:
Diffstat (limited to 'filters/simple-authentication.lua')
-rw-r--r--filters/simple-authentication.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/simple-authentication.lua b/filters/simple-authentication.lua
index 230d3a3..cc86b7e 100644
--- a/filters/simple-authentication.lua
+++ b/filters/simple-authentication.lua
@@ -166,7 +166,7 @@ function url_encode(str)
166 return "" 166 return ""
167 end 167 end
168 str = string.gsub(str, "\n", "\r\n") 168 str = string.gsub(str, "\n", "\r\n")
169 str = string.gsub(str, "([^%w ])", function (c) return string.format("%%%02X", string.byte(c)) end) 169 str = string.gsub(str, "([^%w ])", function(c) return string.format("%%%02X", string.byte(c)) end)
170 str = string.gsub(str, " ", "+") 170 str = string.gsub(str, " ", "+")
171 return str 171 return str
172end 172end