summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authordchill42 <dchill42@gmail.com>2012-08-12 02:10:17 +0200
committerdchill42 <dchill42@gmail.com>2012-08-12 02:10:17 +0200
commit0e88408d0965ee539d9af3ff7eca5415d3276c74 (patch)
tree1822a95a97101f5a8a190e74d8604a2b54a7eb56 /system
parent5628ba0efca7a631012fef91e259b92d7d807af1 (diff)
Updated comments about default driver
Diffstat (limited to 'system')
-rwxr-xr-xsystem/libraries/Session/Session.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php
index 41539a598..97eab803f 100755
--- a/system/libraries/Session/Session.php
+++ b/system/libraries/Session/Session.php
@@ -18,8 +18,8 @@
* CI_Session Class
*
* The user interface defined by EllisLabs, now with puggable drivers to manage different storage mechanisms.
- * By default, the native PHP session driver will load, but the 'sess_driver' config/param item (see above) can be
- * used to specify the 'cookie' driver, or any other you might create.
+ * By default, the cookie session driver will load, but the 'sess_driver' config/param item (see above) can be
+ * used to specify the 'native' driver, or any other you might create.
* Once loaded, this driver setup is a drop-in replacement for the former CI_Session library, taking its place as the
* 'session' member of the global controller framework (e.g.: $CI->session or $this->session).
* In keeping with the CI_Driver methodology, multiple drivers may be loaded, although this might be a bit confusing.