[bug] Auth filter still redirects to /login not auth/login

if you use make:auth it defaults to auth/login for a path. But if you look at the Auth filter it defaults to /login as a path.
This commit is contained in:
Alfred Nutile
2014-09-07 09:20:07 -04:00
parent 2fb780b63f
commit 5eaaadc204

View File

@@ -23,7 +23,7 @@ class AuthFilter {
}
else
{
return Redirect::guest('login');
return Redirect::guest('auth/login');
}
}
}