diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-12-16 03:46:17 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-12-16 03:46:17 +0500 |
commit | d3d9a986ba588bba4f28b856f19f2a75209d3763 (patch) | |
tree | 06473e4c31217a4a04dbbada58a17c8049027f33 /net | |
parent | 2e83fd69f77f90552c27526f4899e6c1fed18549 (diff) | |
download | prosody-d3d9a986ba588bba4f28b856f19f2a75209d3763.tar.gz prosody-d3d9a986ba588bba4f28b856f19f2a75209d3763.zip |
Fixed URL encoding to generate %0x instead of %x
Diffstat (limited to 'net')
-rw-r--r-- | net/http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua index e8a981b8..a661bb52 100644 --- a/net/http.lua +++ b/net/http.lua @@ -13,7 +13,7 @@ local tonumber, tostring, pairs = tonumber, tostring, pairs; local print = function () end local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end }); -local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end +local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end module "http" |