mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
6a8eb1f6e2
commit
516fd5a456
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue