Skip to content

Commit 03bf858

Browse files
authored
Correct version number & method name
1 parent a375386 commit 03bf858

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

user_guide_src/source/libraries/sessions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ However, non-blocking requests in the context of sessions also means
8080
unsafe, because, modifications to session data (or session ID regeneration)
8181
in one request can interfere with the execution of a second, concurrent
8282
request. This detail was at the root of many issues and the main reason why
83-
CodeIgniter 3.0 has a completely re-written Session library.
83+
CodeIgniter 4 has a completely re-written Session library.
8484

8585
Why are we telling you this? Because it is likely that after trying to
8686
find the reason for your performance issues, you may conclude that locking
@@ -387,7 +387,7 @@ Destroying a Session
387387

388388
To clear the current session (for example, during a logout), you may
389389
simply use either PHP's `session_destroy() <http://php.net/session_destroy>`_
390-
function, or the ``sess_destroy()`` method. Both will work in exactly the
390+
function, or the library's ``destroy()`` method. Both will work in exactly the
391391
same way::
392392

393393
session_destroy();

0 commit comments

Comments
 (0)