Skip to content

Commit

Permalink
[ci skip] Fix #5526
Browse files Browse the repository at this point in the history
  • Loading branch information
narfbg committed Jun 15, 2018
1 parent 44f53fb commit 800a20d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -305,7 +305,7 @@ public function gc($maxlifetime)
*/
public function validateId($id)
{
$this->_memcached-get($this->_key_prefix.$id);
$this->_memcached->get($this->_key_prefix.$id);
return ($this->_memcached->getResultCode() === Memcached::RES_SUCCESS);
}

Expand Down
3 changes: 3 additions & 0 deletions user_guide_src/source/changelog.rst
Expand Up @@ -5,7 +5,10 @@ Change Log
Version 3.1.10
==============

Bug fixes for 3.1.10
--------------------

- Fixed a bug (#5526) - :doc:`Session Library <libraries/sessions>` had a syntax error in its 'memcached' driver.

Version 3.1.9
=============
Expand Down

0 comments on commit 800a20d

Please sign in to comment.