Skip to content

Commit 9977605

Browse files
committed
Merge pull request bcit-ci#3650 from jim-parry/fix/housekeeping
[ci skip] Housekeeping.
2 parents e8c912c + 54bf154 commit 9977605

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

readme.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,16 @@ Resources
5454
*********
5555

5656
- `User Guide <http://www.codeigniter.com/docs>`_
57+
- `Language File Translations <https://github.com/bcit-ci/codeigniter3-translations>`_
5758
- `Community Forums <http://forum.codeigniter.com/>`_
5859
- `Community Wiki <https://github.com/bcit-ci/CodeIgniter/wiki>`_
5960
- `Community IRC <http://www.codeigniter.com/irc>`_
6061

62+
Report security issues to our `Security Panel <mailto:security@codeigniter.com>`_, thank you.
63+
6164
***************
6265
Acknowledgement
6366
***************
6467

65-
The EllisLab team and The Reactor Engineers would like to thank all the
68+
The CodeIgniter team would like to thank EllisLab, all the
6669
contributors to the CodeIgniter project and you, the CodeIgniter user.

system/libraries/Session/drivers/Session_memcached_driver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ protected function _get_lock($session_id)
326326

327327
if ($attempt === 30)
328328
{
329-
log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 5 attempts, aborting.');
329+
log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 30 attempts, aborting.');
330330
return FALSE;
331331
}
332332

user_guide_src/source/libraries/sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ To read a tempdata variable, again you can just access it through the
363363

364364
.. important:: The ``userdata()`` method will NOT return tempdata items.
365365

366-
Or if you want to be sure that you're reading "flashdata" (and not any
366+
Or if you want to be sure that you're reading "tempdata" (and not any
367367
other kind), you can also use the ``tempdata()`` method::
368368

369369
$this->session->tempdata('item');

0 commit comments

Comments
 (0)