Browse Source

Refactor the session class.

Taylor Otwell 13 years ago
parent
commit
6590b54f44
1 changed files with 4 additions and 1 deletions
  1. 4 1
      system/session.php

+ 4 - 1
system/session.php

@@ -65,7 +65,10 @@ class Session {
 			static::$session = array('id' => Str::random(40), 'data' => array());
 		}
 
-		if ( ! static::has('csrf_token')) static::put('csrf_token', Str::random(16));
+		if ( ! static::has('csrf_token'))
+		{
+			static::put('csrf_token', Str::random(16));
+		}
 
 		static::$session['last_activity'] = time();
 	}