]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - admin.php
[TASK] centralize error reporting config
[jirafeau_mojo42.git] / admin.php
index 54fcde135df8c5ae21fd0d170598b2131d85ff82..bcc291b2e9b4683f819abca9999913624551f2d0 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -1,7 +1,7 @@
 <?php
 /*
  *  Jirafeau, your web file repository
- *  Copyright (C) 2015  Jerome Jutteau <j.jutteau@gmail.com>
+ *  Copyright (C) 2015  Jerome Jutteau <jerome@jutteau.fr>
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU Affero General Public License as
@@ -110,8 +110,6 @@ if (php_sapi_name() == "cli") {
    * Be sure PHP's safe mode is off.
    */
   @set_time_limit(0);
-  /* Remove errors. */
-  @error_reporting(0);
 
   /* Show admin interface if not downloading a file. */
   if (!(isset($_POST['action']) && strcmp($_POST['action'], 'download') == 0)) {
@@ -277,7 +275,6 @@ if (php_sapi_name() == "cli") {
               $r = fopen(VAR_FILES . $p . $l['hash'], 'r');
               while (!feof($r)) {
                   print fread($r, 1024);
-                  ob_flush();
               }
               fclose($r);
           }

patrick-canterino.de