Browse Source

fix bug in backreference.

Taylor Otwell 13 years ago
parent
commit
6d6fc1b13e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/routing/controller.php

+ 1 - 1
laravel/routing/controller.php

@@ -89,7 +89,7 @@ abstract class Controller {
 			if ($count > 0) unset($parameters[$key]);
 		}
 
-		return array(str_replace('$1', 'index', $method), $parameters);
+		return array(str_replace('(:1)', 'index', $method), $parameters);
 	}
 
 	/**