summaryrefslogtreecommitdiff
path: root/framework/Web
diff options
context:
space:
mode:
authorhaertl.mike <>2009-01-21 08:49:21 +0000
committerhaertl.mike <>2009-01-21 08:49:21 +0000
commitf75a6c36cbc14ee4c80b667161bdc0a2b48ca6d7 (patch)
tree474302186920fd574de2e1511d18389933566859 /framework/Web
parentc23cefbdb2b76e08aeaaa08e6838403042a2a7ad (diff)
Fixed URL wildcard pattern issue
Diffstat (limited to 'framework/Web')
-rw-r--r--framework/Web/TUrlMapping.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/Web/TUrlMapping.php b/framework/Web/TUrlMapping.php
index 7a9628fd..47232401 100644
--- a/framework/Web/TUrlMapping.php
+++ b/framework/Web/TUrlMapping.php
@@ -630,6 +630,9 @@ class TUrlMappingPattern extends TComponent
else
preg_match($this->getParameterizedPattern(),trim($request->getPathInfo(),'/').'/',$matches);
+ if($this->getIsWildCardPattern() && isset($matches[$this->_serviceID]))
+ $matches[$this->_serviceID]=str_replace('*',$matches[$this->_serviceID],$this->_serviceParameter);
+
if (isset($matches['urlparams']))
{
$params=explode('/',$matches['urlparams']);