]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - script.php
[FEATURE] Add composer
[jirafeau_mojo42.git] / script.php
index 2cc716b7f48c36da21fe0407672d5cee8723f317..3f7d2f7205b356c6ef609b393129d427cc8aa67c 100644 (file)
@@ -32,8 +32,6 @@ require(JIRAFEAU_ROOT . 'lib/lang.php');
  * Be sure PHP's safe mode is off.
  */
 @set_time_limit(0);
-/* Remove errors. */
-@error_reporting(0);
 
 if ($_SERVER['REQUEST_METHOD'] == "GET" && count($_GET) == 0) {
     require(JIRAFEAU_ROOT . 'lib/template/header.php');
@@ -198,7 +196,6 @@ if (isset($_FILES['file']) && is_writable(VAR_FILES)
     $r = fopen(VAR_FILES . $p . $link['hash'], 'r');
     while (!feof($r)) {
         print fread($r, 1024);
-        ob_flush();
     }
     fclose($r);
 

patrick-canterino.de