]> git.p6c8.net - jirafeau.git/commitdiff
[TASK] centralize error reporting config
authorJerome Jutteau <jerome@jutteau.fr>
Sat, 5 Dec 2020 10:53:40 +0000 (11:53 +0100)
committerJerome Jutteau <jerome@jutteau.fr>
Sat, 5 Dec 2020 10:53:40 +0000 (11:53 +0100)
Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
admin.php
f.php
lib/settings.php
script.php

index e5ba8bd3fa2a774d690a26bfc433479522a6a4eb..bcc291b2e9b4683f819abca9999913624551f2d0 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -110,8 +110,6 @@ if (php_sapi_name() == "cli") {
    * Be sure PHP's safe mode is off.
    */
   @set_time_limit(0);
    * 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)) {
 
   /* Show admin interface if not downloading a file. */
   if (!(isset($_POST['action']) && strcmp($_POST['action'], 'download') == 0)) {
diff --git a/f.php b/f.php
index 8f7aa37d48765060b406307cd9ae6ecdecd64105..f6fe6fd997b3f0e307db5743be5bee8da4753cb2 100644 (file)
--- a/f.php
+++ b/f.php
@@ -32,8 +32,6 @@ if (!isset($_GET['h']) || empty($_GET['h'])) {
  * Be sure PHP's safe mode is off.
  */
 @set_time_limit(0);
  * Be sure PHP's safe mode is off.
  */
 @set_time_limit(0);
-/* Remove errors. */
-@error_reporting(0);
 
 $link_name = $_GET['h'];
 
 
 $link_name = $_GET['h'];
 
index 621af0c34f3728a80905e469a9e99962c44458f0..fa9efaa8e0309650909258be11bc66db3451b7cf 100644 (file)
@@ -30,11 +30,15 @@ if (file_exists(JIRAFEAU_ROOT . 'lib/config.local.php')) {
 }
 
 // Setup debug mode
 }
 
 // Setup debug mode
-error_reporting(0);
 if ($cfg['debug'] === true)
 {
 if ($cfg['debug'] === true)
 {
-    error_reporting(E_ALL);
+    @error_reporting(E_ALL);
 }
 }
+else
+{
+    @error_reporting(0);
+}
+
 
 // Set constants
 
 
 // Set constants
 
index cd7cec60ad7ec74a5389b79816ce213cd1ac10ff..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);
  * 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');
 
 if ($_SERVER['REQUEST_METHOD'] == "GET" && count($_GET) == 0) {
     require(JIRAFEAU_ROOT . 'lib/template/header.php');

patrick-canterino.de