Browse Source

refactoring the auth class.

Taylor Otwell 13 years ago
parent
commit
bb2cd3e373
1 changed files with 3 additions and 1 deletions
  1. 3 1
      laravel/security/auth.php

+ 3 - 1
laravel/security/auth.php

@@ -158,7 +158,9 @@ class Auth {
 		// to assume the settings are the same.
 		$config = Config::get('session');
 
-		Cookie::forever(Auth::remember_key, $cookie, $config['path'], $config['domain'], $config['secure']);
+		extract($config, EXTR_SKIP);
+
+		Cookie::forever(Auth::remember_key, $cookie, $path, $domain, $secure);
 	}
 
 	/**