]> git.p6c8.net - jirafeau_project.git/blobdiff - script.php
[TASK] mass renaming md5 -> hash
[jirafeau_project.git] / script.php
index aa04a6fd5e99e99f640da8b5dbf261e558f844f0..13a88b88624332efa25a62cd2b30c3d0a10d2d96 100644 (file)
@@ -179,8 +179,8 @@ if (isset($_FILES['file']) && is_writable(VAR_FILES)
         echo 'Error 10';
         exit;
     }
         echo 'Error 10';
         exit;
     }
-    $p = s2p($link['md5']);
-    if (!file_exists(VAR_FILES . $p . $link['md5'])) {
+    $p = s2p($link['hash']);
+    if (!file_exists(VAR_FILES . $p . $link['hash'])) {
         echo 'Error 11';
         exit;
     }
         echo 'Error 11';
         exit;
     }
@@ -191,7 +191,7 @@ if (isset($_FILES['file']) && is_writable(VAR_FILES)
     header('Content-Disposition: attachment; filename="' .
             $link['file_name'] . '"');
 
     header('Content-Disposition: attachment; filename="' .
             $link['file_name'] . '"');
 
-    $r = fopen(VAR_FILES . $p . $link['md5'], 'r');
+    $r = fopen(VAR_FILES . $p . $link['hash'], 'r');
     while (!feof($r)) {
         print fread($r, 1024);
         ob_flush();
     while (!feof($r)) {
         print fread($r, 1024);
         ob_flush();

patrick-canterino.de