Typo fix in SessionHandler

---
Provider by anonymous 35971

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332329 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Chris Wright 2013-12-10 11:02:11 +00:00
parent 6a8eb1f6e2
commit 516fd5a456

View file

@ -110,7 +110,7 @@ class EncryptedSessionHandler extends SessionHandler
{
$data = parent::read($id);
return mycrypt_decrypt(MCRYPT_3DES, $this->key, $data, MCRYPT_MODE_ECB);
return mcrypt_decrypt(MCRYPT_3DES, $this->key, $data, MCRYPT_MODE_ECB);
}
public function write($id, $data)