aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2008-12-16 03:46:17 +0500
committerWaqas Hussain <waqas20@gmail.com>2008-12-16 03:46:17 +0500
commitd3d9a986ba588bba4f28b856f19f2a75209d3763 (patch)
tree06473e4c31217a4a04dbbada58a17c8049027f33 /net
parent2e83fd69f77f90552c27526f4899e6c1fed18549 (diff)
downloadprosody-d3d9a986ba588bba4f28b856f19f2a75209d3763.tar.gz
prosody-d3d9a986ba588bba4f28b856f19f2a75209d3763.zip
Fixed URL encoding to generate %0x instead of %x
Diffstat (limited to 'net')
-rw-r--r--net/http.lua2
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"