diff options
author | Kim Alvefur <zash@zash.se> | 2012-12-09 12:39:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-12-09 12:39:49 +0100 |
commit | 35cb12c554d8b5ee7134a0e15556e91a81a093b4 (patch) | |
tree | 03956a8a9247babc607ab26b998b387ff6caf3cd /plugins/mod_http.lua | |
parent | 25f5253ac069dccbc28d4495fc493b5667f3607b (diff) | |
parent | 329ee389c5fdea1e5cab9385accf7fd5fe80c7dc (diff) | |
download | prosody-35cb12c554d8b5ee7134a0e15556e91a81a093b4.tar.gz prosody-35cb12c554d8b5ee7134a0e15556e91a81a093b4.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins/mod_http.lua')
-rw-r--r-- | plugins/mod_http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index e73778ae..018f2ea3 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -88,7 +88,7 @@ function module.add_host(module) local data = handler; handler = function () return data; end elseif event_name:sub(-2, -1) == "/*" then - local base_path_len = #event_name:match("(/.+/)%*$")+1; + local base_path_len = #event_name:match("/.+$"); local _handler = handler; handler = function (event) local path = event.request.path:sub(base_path_len); |