[TASK] Fixed parameter matching regex when using multiple optional parameters.

This commit is contained in:
Simon Sessingø
2015-12-19 07:15:32 +01:00
parent 97e2edd207
commit b9be7695a7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ class RouterResource extends RouterEntry {
$route = rtrim($this->url, '/') . '/{id?}/{action?}';
$parameters = $this->parseParameters($route, $url, '[0-9]*?');
$parameters = $this->parseParameters($route, $url);
if($parameters !== null) {