[BUGFIX] Fixed optinal parameters not availible when getting route.

[BUGFIX] Fixed optinal parameters not availible in url.
This commit is contained in:
Simon Sessingø
2015-11-21 19:43:23 +01:00
parent 3b4954821a
commit e5700477e0
+1 -1
View File
@@ -6,7 +6,7 @@ use Pecee\Http\Request;
class RouterRoute extends RouterEntry {
const PARAMETERS_REGEX_MATCH = '{([A-Za-z\-\_]*?)}';
const PARAMETERS_REGEX_MATCH = '{([A-Za-z\-\_]*?\?{0,1})}';
protected $url;