Browse Source

Fixed broken link in filters.php. Use Response::error.

Taylor Otwell 13 years ago
parent
commit
829a629200
1 changed files with 2 additions and 2 deletions
  1. 2 2
      application/filters.php

+ 2 - 2
application/filters.php

@@ -11,7 +11,7 @@ return array(
 	| functions. To make your life easier, we have already setup basic filters
 	| for authentication and CSRF protection.
 	|
-	| For more information, check out: http://laravel.com/docs/basics/routes#filters
+	| For more information, check out: http://laravel.com/docs/start/routes#filters
 	|
 	*/
 
@@ -35,7 +35,7 @@ return array(
 
 	'csrf' => function()
 	{
-		return (Input::get('csrf_token') !== Form::raw_token()) ? Response::make(View::make('error/500'), 500) : null;
+		return (Input::get('csrf_token') !== Form::raw_token()) ? Response::error('500') : null;
 	},
 
 );