]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
Fix tmp link name
authorJerome Jutteau <mojo@couak.net>
Mon, 29 Jul 2013 20:03:44 +0000 (20:03 +0000)
committerJerome Jutteau <mojo@couak.net>
Mon, 29 Jul 2013 20:03:44 +0000 (20:03 +0000)
lib/functions.php

index 1ad0e5241a205252dd1857a04bc6f15fba4e041c..f1c1d77a4b199078dcbe6ea018de4c5ca3319f35 100755 (executable)
@@ -389,7 +389,7 @@ jirafeau_upload ($file, $one_time_download, $key, $time, $ip, $crypt, $link_name
         $password = md5 ($key);
 
     /* create link file */
-    $link_tmp_name =  VAR_LINKS . $md5 . rand (0, 10000) . ' .tmp';
+    $link_tmp_name =  VAR_LINKS . $md5 . rand (0, 10000) . '.tmp';
     $handle = fopen ($link_tmp_name, 'w');
     fwrite ($handle,
             $name . NL. $mime_type . NL. $size . NL. $password . NL. $time .
@@ -934,7 +934,7 @@ jirafeau_async_end ($ref, $code, $crypt, $link_name_length)
     fclose ($handle);
     
     /* Create link. */
-    $link_tmp_name =  VAR_LINKS . $md5 . rand (0, 10000) . ' .tmp';
+    $link_tmp_name =  VAR_LINKS . $md5 . rand (0, 10000) . '.tmp';
     $handle = fopen ($link_tmp_name, 'w');
     fwrite ($handle,
             $a['file_name'] . NL . $a['mime_type'] . NL . $size . NL .

patrick-canterino.de