Browse Source

refactoring.

Taylor Otwell 13 years ago
parent
commit
88c8cf6c10
2 changed files with 2 additions and 4 deletions
  1. 1 1
      laravel/cookie.php
  2. 1 3
      laravel/security/auth.php

+ 1 - 1
laravel/cookie.php

@@ -125,7 +125,7 @@ class Cookie {
 	 */
 	public static function forget($name)
 	{
-		return static::put($name, null, -1500);
+		return static::put($name, null, -2000);
 	}
 
 }

+ 1 - 3
laravel/security/auth.php

@@ -63,9 +63,7 @@ class Auth {
 
 		static::$user = call_user_func(Config::get('auth.user'), Session::get(Auth::user_key));
 
-		$cookie = Cookie::get(Auth::remember_key);
-
-		if (is_null(static::$user) and ! is_null($cookie))
+		if (is_null(static::$user) and ! is_null($cookie = Cookie::get(Auth::remember_key)))
 		{
 			static::$user = static::recall($cookie);
 		}