Fixed issue with uri template router ..

it was applying on request_uri instead of path_info
now it match on PATH_INFO
This commit is contained in:
Jocelyn Fiat
2011-09-16 18:56:02 +02:00
parent 92d8357d09
commit 111812c4e9

View File

@@ -54,7 +54,7 @@ feature {NONE} -- Access: Implementation
l_req_method: READABLE_STRING_GENERAL l_req_method: READABLE_STRING_GENERAL
l_res: URI_TEMPLATE_MATCH_RESULT l_res: URI_TEMPLATE_MATCH_RESULT
do do
p := req.request_uri p := req.path_info
from from
l_req_method := req.request_method l_req_method := req.request_method
l_handlers := handlers l_handlers := handlers