Browse Source

Merge pull request #873 from dlpetrie/master

Adding support for '=', in (:any) and (:any?) route patterns
Taylor Otwell 12 years ago
parent
commit
1f93039ba7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/routing/router.php

+ 2 - 2
laravel/routing/router.php

@@ -75,7 +75,7 @@ class Router {
 	 */
 	 */
 	public static $patterns = array(
 	public static $patterns = array(
 		'(:num)' => '([0-9]+)',
 		'(:num)' => '([0-9]+)',
-		'(:any)' => '([a-zA-Z0-9\.\-_%]+)',
+		'(:any)' => '([a-zA-Z0-9\.\-_%=]+)',
 		'(:all)' => '(.*)',
 		'(:all)' => '(.*)',
 	);
 	);
 
 
@@ -86,7 +86,7 @@ class Router {
 	 */
 	 */
 	public static $optional = array(
 	public static $optional = array(
 		'/(:num?)' => '(?:/([0-9]+)',
 		'/(:num?)' => '(?:/([0-9]+)',
-		'/(:any?)' => '(?:/([a-zA-Z0-9\.\-_%]+)',
+		'/(:any?)' => '(?:/([a-zA-Z0-9\.\-_%=]+)',
 		'/(:all?)' => '(?:/(.*)',
 		'/(:all?)' => '(?:/(.*)',
 	);
 	);