Browse Source

Remove any unspecified optional parameters from URIs created from routes.

Taylor Otwell 13 years ago
parent
commit
a414bbfccb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/url.php

+ 2 - 0
system/url.php

@@ -79,6 +79,8 @@ class URL {
 				$uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
 			}
 
+			$uri = str_replace(array('/(:any?)', '/(:num?)'), '', $uri);
+
 			return static::to($uri, $https);
 		}