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:
2015-08-05 11:49:22 +00:00
parent 36afdf4322
commit 0077b21e43

View File

@@ -390,7 +390,7 @@ class route
foreach ($reflect->getParameters() as $key=>$val)
{
if (isset ($matches[$val->name]))
$params[] = $matches[$val->name];
$params[] = urldecode ($matches[$val->name]);
else
$params[] = null;
}