Browse Source

Refactor the session class.

Taylor Otwell 13 years ago
parent
commit
04a1e44e6e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/session.php

+ 2 - 2
system/session.php

@@ -231,10 +231,10 @@ class Session {
 	 */
 	private static function write_cookie()
 	{
-		extract(Config::get('session'));
-
 		if ( ! headers_sent())
 		{
+			extract(Config::get('session'));
+
 			$minutes = ($expire_on_close) ? 0 : $lifetime;
 
 			Cookie::put('laravel_session', static::$session['id'], $minutes, $path, $domain, $https, $http_only);