Mohammad Sadeghi 12 years ago
parent
commit
9d28938d55
1 changed files with 2 additions and 0 deletions
  1. 2 0
      laravel/routing/router.php

+ 2 - 0
laravel/routing/router.php

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