Browse Source

urldecode all route parameters.

Taylor Otwell 13 years ago
parent
commit
17213fe073
1 changed files with 2 additions and 1 deletions
  1. 2 1
      laravel/routing/route.php

+ 2 - 1
laravel/routing/route.php

@@ -53,7 +53,8 @@ class Route {
 	{
 	{
 		$this->key = $key;
 		$this->key = $key;
 		$this->action = $action;
 		$this->action = $action;
-		$this->parameters = $parameters;
+
+		$this->parameters = array_map('urldecode', $parameters);
 
 
 		// Extract each URI from the route key. Since the route key has the request
 		// Extract each URI from the route key. Since the route key has the request
 		// method, we will extract that from the string. If the URI points to the
 		// method, we will extract that from the string. If the URI points to the