From: Jerome Jutteau Date: Wed, 31 Jul 2013 07:23:02 +0000 (+0000) Subject: Fix async uploads with encryption X-Git-Tag: 1.1~191 X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/bbc830990c1a38deceae30553dd1f08def3a1c92?ds=sidebyside Fix async uploads with encryption --- 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; }