X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/78a1c41c40bb216e3879220fc544f8ae816d3c1b..7caac04de6d9c68609ad357913a233ca53dc9a17:/f.php?ds=sidebyside diff --git a/f.php b/f.php index d61caeb..8f7aa37 100644 --- a/f.php +++ b/f.php @@ -268,7 +268,6 @@ else if ($link['crypted']) { while (!feof($r)) { $dec = mdecrypt_generic($m, fread($r, 1024)); print $dec; - ob_flush(); } fclose($r); /* Cleanup. */ @@ -280,7 +279,6 @@ else { $r = fopen(VAR_FILES . $p . $link['hash'], 'r'); while (!feof($r)) { print fread($r, 1024); - ob_flush(); } fclose($r); }