mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08:00
Bugfix: undefined sEncryptedString
This commit is contained in:
parent
80a72d172e
commit
bad981ea7b
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ class Crypt
|
|||
return \openssl_decrypt($sString, $sCipher, $sKey, OPENSSL_RAW_DATA, $iv);
|
||||
}
|
||||
if (\is_callable('xxtea_decrypt')) {
|
||||
return \xxtea_decrypt($sEncryptedString, $sKey);
|
||||
return \xxtea_decrypt($sString, $sKey);
|
||||
}
|
||||
return Xxtea::decrypt($sEncryptedString, $sKey);
|
||||
return Xxtea::decrypt($sString, $sKey);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue