Bugfix "Gesehen"-Button

This commit is contained in:
2013-11-21 02:51:27 +01:00
parent 7bc24be788
commit a66ad460e8
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ Route::post('login', function() {
$userdata = array(
'name' => Input::get('user'),
'password' => Input::get('password'));
if(Auth::attempt($userdata)) {
if(Auth::attempt($userdata, true)) {
return Redirect::intended('/');
} else {
echo "Login gescheitert.";