Browse Source

fixed bug in route parameterizer.

Taylor Otwell 14 years ago
parent
commit
bc8fa3570e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/url.php

+ 1 - 1
system/url.php

@@ -92,7 +92,7 @@ class URL {
 			// ----------------------------------------------------
 			foreach ($parameters as $parameter)
 			{
-				$uri = preg_replace('/\(.+\)/', $parameter, $uri, 1);
+				$uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
 			}
 
 			return static::to($uri, $https);