route : the URL are decoded before providing the informations to map
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2210 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
@@ -390,7 +390,7 @@ class route
|
|||||||
foreach ($reflect->getParameters() as $key=>$val)
|
foreach ($reflect->getParameters() as $key=>$val)
|
||||||
{
|
{
|
||||||
if (isset ($matches[$val->name]))
|
if (isset ($matches[$val->name]))
|
||||||
$params[] = $matches[$val->name];
|
$params[] = urldecode ($matches[$val->name]);
|
||||||
else
|
else
|
||||||
$params[] = null;
|
$params[] = null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user