mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +03: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);
|
return \openssl_decrypt($sString, $sCipher, $sKey, OPENSSL_RAW_DATA, $iv);
|
||||||
}
|
}
|
||||||
if (\is_callable('xxtea_decrypt')) {
|
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…
Add table
Add a link
Reference in a new issue