Merge pull request #2991 from alnutile/patch-3

[bug] Auth filter still redirects to /login not auth/login
This commit is contained in:
Taylor Otwell 2014-09-07 17:08:49 -05:00
commit 464c595c46
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public function filter(Route $route, Request $request)
} }
else else
{ {
return Redirect::guest('login'); return Redirect::guest('auth/login');
} }
} }
} }