adding in '=' to regex for (:any) / (:any?) calls.
This commit is contained in:
parent
3a62036a9c
commit
f640cd42ad
|
@ -75,7 +75,7 @@ class Router {
|
|||
*/
|
||||
public static $patterns = array(
|
||||
'(:num)' => '([0-9]+)',
|
||||
'(:any)' => '([a-zA-Z0-9\.\-_%]+)',
|
||||
'(:any)' => '([a-zA-Z0-9\.\-_%=]+)',
|
||||
'(:all)' => '(.*)',
|
||||
);
|
||||
|
||||
|
@ -86,7 +86,7 @@ class Router {
|
|||
*/
|
||||
public static $optional = array(
|
||||
'/(:num?)' => '(?:/([0-9]+)',
|
||||
'/(:any?)' => '(?:/([a-zA-Z0-9\.\-_%]+)',
|
||||
'/(:any?)' => '(?:/([a-zA-Z0-9\.\-_%=]+)',
|
||||
'/(:all?)' => '(?:/(.*)',
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue