Fix the auth filter to redirect to auth/login

This commit is contained in:
James Brooks
2014-11-25 09:02:29 +00:00
parent 69a8811a48
commit 429e717278
+1 -1
View File
@@ -23,7 +23,7 @@
}
else
{
return Redirect::guest('login');
return Redirect::guest('auth/login');
}
}
});