diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-25 14:07:35 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-25 14:07:35 +0100 |
commit | 89ecc8a1c69bed3451d43d3f0a367f4e498d1b80 (patch) | |
tree | 91abfa8346b81a3b98ae567f5c7c608b1dc3394d /user_guide_src/source/libraries/sessions.rst | |
parent | ade05b40714070bcda7ab32187068e95b98c8cf8 (diff) | |
parent | 6262d053db57957c4445ef7fce76070854c3e30d (diff) |
Merge pull request #2029 from dchill42/driver_ext
Added driver extension support
Diffstat (limited to 'user_guide_src/source/libraries/sessions.rst')
-rw-r--r-- | user_guide_src/source/libraries/sessions.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/user_guide_src/source/libraries/sessions.rst b/user_guide_src/source/libraries/sessions.rst index ee7fb0b1c..df1049f82 100644 --- a/user_guide_src/source/libraries/sessions.rst +++ b/user_guide_src/source/libraries/sessions.rst @@ -28,10 +28,6 @@ use the $this->load->driver function:: Once loaded, the Sessions library object will be available using: $this->session -.. note:: For backward compatibility, the Session class may stil be loaded - using the $this->load->library function, but converting your applications - to use $this->load->driver is strongly recommended. - How do Sessions work? ===================== @@ -485,4 +481,3 @@ without making it the initially loaded driver, set 'sess_valid_drivers' in your config.php file to an array including your driver name:: $config['sess_valid_drivers'] = array('sess_driver'); - |