Browse Source

fix bug with root routing.

Taylor Otwell 13 years ago
parent
commit
597feed4a7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/routing/router.php

+ 1 - 1
laravel/routing/router.php

@@ -318,7 +318,7 @@ class Router {
 		// to point the pattern to the controller's index method.
 		$pattern = trim($root.'/'.$home, '/') ?: '/';
 
-		$attributes = array('uses' => "{$identifier}@(:1)", 'defaults' => 'index');
+		$attributes = array('uses' => "{$identifier}@index");
 
 		static::register('*', $pattern, $attributes);
 	}