X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/41cde93bc152ccd48b5fc25d652d288a6a0af016..d9bd5ba08bc665d25049a87f6b8663c2a5c8aca3:/f.php diff --git a/f.php b/f.php index c19232d..8f7aa37 100644 --- a/f.php +++ b/f.php @@ -2,7 +2,7 @@ /* * Jirafeau, your web file repository * Copyright (C) 2008 Julien "axolotl" BERNARD - * Copyright (C) 2015 Jerome Jutteau + * Copyright (C) 2015 Jerome Jutteau * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -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); }