mod_http: Fix normalize_path('/') to not return an empty string, fixes module:http_url()

This commit is contained in:
Kim Alvefur 2012-05-25 03:39:45 +02:00
parent 1d00578154
commit 1e99d3bcd0

View file

@ -17,8 +17,8 @@ local server = require "net.http.server";
server.set_default_host(module:get_option_string("http_default_host")); server.set_default_host(module:get_option_string("http_default_host"));
local function normalize_path(path) local function normalize_path(path)
if path:sub(1,1) ~= "/" then path = "/"..path; end
if path:sub(-1,-1) == "/" then path = path:sub(1, -2); end if path:sub(-1,-1) == "/" then path = path:sub(1, -2); end
if path:sub(1,1) ~= "/" then path = "/"..path; end
return path; return path;
end end