diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-07 20:40:58 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-07 20:40:58 +0100 |
commit | be40642b5b358c6e68b9cdcbde7ce4a36c9fa49c (patch) | |
tree | a71d4fc49401958034c14c48edba7693cfc4c91d /user_guide_src/source | |
parent | dd536b7028c5d8e502cc7387ddb5f3fe8c8770d8 (diff) |
[ci skip] Really fix wrong doc references
Diffstat (limited to 'user_guide_src/source')
-rw-r--r-- | user_guide_src/source/installation/upgrade_300.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst index fe655ad14..6358a811f 100644 --- a/user_guide_src/source/installation/upgrade_300.rst +++ b/user_guide_src/source/installation/upgrade_300.rst @@ -96,7 +96,7 @@ With the change from a single Session Library to the new Session Driver, two new - ``$config['sess_driver']`` selects which driver to initially load. Options are: - 'cookie' (the default) for classic CodeIgniter cookie-based sessions - 'native' for native PHP Session support - - the name of a custom driver you have provided (see :doc:`Session Driver <../libraries/session>` for more info) + - the name of a custom driver you have provided (see :doc:`Session Driver <../libraries/sessions>` for more info) - ``$config['sess_valid_drivers']`` provides an array of additional custom drivers to make available for loading As the new Session Driver library loads the classic Cookie driver by default and always makes 'cookie' and 'native' @@ -472,7 +472,7 @@ in CodeIgniter 3.1+. Session Library method all_userdata() ===================================== -As seen in the :doc:`Change Log <../changelog>`, :doc:`Session Library <libraries/sessions>` +As seen in the :doc:`Change Log <../changelog>`, :doc:`Session Library <../libraries/sessions>` method ``userdata()`` now allows you to fetch all userdata by simply omitting its parameter:: $this->session->userdata(); |