From bbc830990c1a38deceae30553dd1f08def3a1c92 Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Wed, 31 Jul 2013 07:23:02 +0000 Subject: [PATCH] Fix async uploads with encryption --- lib/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions.php b/lib/functions.php index f1c1d77..15c7a3e 100755 --- a/lib/functions.php +++ b/lib/functions.php @@ -905,7 +905,7 @@ jirafeau_async_end ($ref, $code, $crypt, $link_name_length) $crypt_key = ''; if ($crypt == true && extension_loaded('mcrypt')) { - $cypt_key = jirafeau_encrypt_file ($p, $p); + $crypt_key = jirafeau_encrypt_file ($p, $p); if (strlen($crypt_key) > 0) $crypted = true; } -- 2.34.1