Browse Source

Added http_only option to session configuration.

Taylor Otwell 13 years ago
parent
commit
db45be960f
1 changed files with 16 additions and 1 deletions
  1. 16 1
      application/config/session.php

+ 16 - 1
application/config/session.php

@@ -16,7 +16,7 @@ return array(
 	|
 	*/
 
-	'driver' => '',
+	'driver' => 'file',
 
 	/*
 	|--------------------------------------------------------------------------
@@ -86,4 +86,19 @@ return array(
 
 	'https' => false,
 
+	/*
+	|--------------------------------------------------------------------------
+	| HTTP Only Session Cookie
+	|--------------------------------------------------------------------------
+	|
+	| Should the session cookie only be accessible over HTTP?
+	|
+	| Note: The intention of the "HTTP Only" option is to keep cookies from
+	|       being accessed by client-side scripting languages. However, this
+	|       setting should not be viewed as providing total XSS protection.
+	|
+	*/
+
+	'http_only' => false,
+
 );