Browse Source

Fixes issue #141 and a typo.

Paul Boco 13 years ago
parent
commit
fb25edd0b1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/security/auth.php

+ 2 - 2
laravel/security/auth.php

@@ -112,7 +112,7 @@ class Auth {
 	 * 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 @@ class Auth {
 
 		if ( ! is_null($user))
 		{
-			static::login($user, $config, $remember);
+			static::login($user, $remember);
 
 			return true;
 		}