diff options
author | Brice Maron <brice@bmaron.net> | 2012-05-25 22:17:38 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-05-25 22:18:02 +0000 |
commit | 85dbfc8165f4249ec0cdf3ab6f8b203ed512b6ca (patch) | |
tree | 93f29e3ed51ee1ef88ca9a8269a0dacc6a1f7ac8 /3rdparty | |
parent | dfd5a9759c591ed92d5e55c59ca98afbb35eed7d (diff) | |
download | nextcloud-server-85dbfc8165f4249ec0cdf3ab6f8b203ed512b6ca.tar.gz nextcloud-server-85dbfc8165f4249ec0cdf3ab6f8b203ed512b6ca.zip |
Correct small typo to Crypt_Blowfish 3drparty fix oc-810
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/Crypt_Blowfish/Blowfish.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/Crypt_Blowfish/Blowfish.php b/3rdparty/Crypt_Blowfish/Blowfish.php index a7b8948f043..4ccacb963e3 100644 --- a/3rdparty/Crypt_Blowfish/Blowfish.php +++ b/3rdparty/Crypt_Blowfish/Blowfish.php @@ -221,7 +221,7 @@ class Crypt_Blowfish function decrypt($cipherText) { if (!is_string($cipherText)) { - PEAR::raiseError('Chiper text must be a string', 1, PEAR_ERROR_DIE); + PEAR::raiseError('Cipher text must be a string', 1, PEAR_ERROR_DIE); } if (extension_loaded('mcrypt')) { |