From fb25edd0b14af38c9144ce9fffd0bd568b3853bb Mon Sep 17 00:00:00 2001 From: Paul Boco Date: Sun, 6 Nov 2011 11:39:52 -0600 Subject: [PATCH] Fixes issue #141 and a typo. --- laravel/security/auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/security/auth.php b/laravel/security/auth.php index 224edfde..7ab50922 100644 --- a/laravel/security/auth.php +++ b/laravel/security/auth.php @@ -112,7 +112,7 @@ protected static function recall($cookie) * and their user ID will be stored in the session via the "login" method. * * The user may also be "remembered", which will keep the user logged into the - * application for one year or until they logout. The user is rememberd via + * application for one year or until they logout. The user is remembered via * an encrypted cookie. * * @param string $username @@ -128,7 +128,7 @@ public static function attempt($username, $password = null, $remember = false) if ( ! is_null($user)) { - static::login($user, $config, $remember); + static::login($user, $remember); return true; }