Browse Source

Use App::abort instead of Response::make

Joseph Silber 11 years ago
parent
commit
23cc411ce1
1 changed files with 1 additions and 4 deletions
  1. 1 4
      app/filters.php

+ 1 - 4
app/filters.php

@@ -37,10 +37,7 @@ Route::filter('auth', function()
 {
 {
 	if (Auth::guest())
 	if (Auth::guest())
 	{
 	{
-		if (Request::ajax())
-		{
-			return Response::make('', 401, array('HTTP/1.1 401 Unauthorized'));
-		}
+		if (Request::ajax()) App::abort(401);
 
 
 		return Redirect::guest('login');
 		return Redirect::guest('login');
 	}
 	}