Changeset

5206:b4de85209ccf

Merge
author Matthew Wild <mwild1@gmail.com>
date Thu, 29 Nov 2012 07:17:31 +0500
parents 5205:f7ff48494c2b (diff) 5203:a971bee1a5f5 (current diff)
children 5208:afa9b7e18e43
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_http.lua	Sun Nov 25 05:12:46 2012 +0100
+++ b/plugins/mod_http.lua	Thu Nov 29 07:17:31 2012 +0500
@@ -88,10 +88,10 @@
 					local data = handler;
 					handler = function () return data; end
 				elseif event_name:sub(-2, -1) == "/*" then
-					local base_path = event_name:match("/(.+)/*$");
+					local base_path_len = #event_name:match("(/.+/)%*$")+1;
 					local _handler = handler;
 					handler = function (event)
-						local path = event.request.path:sub(#base_path+1);
+						local path = event.request.path:sub(base_path_len);
 						return _handler(event, path);
 					end;
 				end