diff options
author | dchill42 <dchill42@gmail.com> | 2012-11-25 00:41:13 +0100 |
---|---|---|
committer | dchill42 <dchill42@gmail.com> | 2012-11-25 07:30:24 +0100 |
commit | 6262d053db57957c4445ef7fce76070854c3e30d (patch) | |
tree | a57f2693abeeedc91d0f7a539ae55028eff4c541 /user_guide_src/source/libraries | |
parent | ad5f1d032fb3204bc1b81891a3231ae8ac47392b (diff) |
Added support for extending individual driver classes and driver unit tests
Signed-off-by: dchill42 <dchill42@gmail.com>
Diffstat (limited to 'user_guide_src/source/libraries')
-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'); - |