]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
Remove errors when occurs
authorJerome Jutteau <mojo@couak.net>
Thu, 1 Aug 2013 19:29:56 +0000 (19:29 +0000)
committerJerome Jutteau <mojo@couak.net>
Thu, 1 Aug 2013 19:29:56 +0000 (19:29 +0000)
admin.php
f.php
script.php

index 56db0e5149a90ef1081c83831c1726c42ff207bd..5ae2d6e24605f18ba7b5460edce2967aa3e5a079 100755 (executable)
--- a/admin.php
+++ b/admin.php
@@ -110,7 +110,9 @@ elseif (!isset ($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
 /* Operations may take a long time.
  * Be sure PHP's safe mode is off.
  */
- set_time_limit(0);
+@set_time_limit(0);
+/* Remove errors. */
+@error_reporting(0);
 
 /* Admin interface. */
 require (JIRAFEAU_ROOT . 'lib/template/header.php');
diff --git a/f.php b/f.php
index 2a5a6dad35b68a786ff85540df7af799fc772e52..6f8f836f72896a36761ca9acdd749af7c73ecf46 100644 (file)
--- a/f.php
+++ b/f.php
@@ -33,7 +33,9 @@ if (!isset ($_GET['h']) || empty ($_GET['h']))
 /* Operations may take a long time.
  * Be sure PHP's safe mode is off.
  */
-set_time_limit(0);
+@set_time_limit(0);
+/* Remove errors. */
+@error_reporting(0);
 
 $link_name = $_GET['h'];
 
index 1d420b60dd126521941fd0846ea14706e1a7d1c7..b6fa71f273e3eb0c4b9936a7553d00111c887a50 100755 (executable)
@@ -36,7 +36,9 @@ require (JIRAFEAU_ROOT . 'lib/lang.php');
 /* Operations may take a long time.\r
  * Be sure PHP's safe mode is off.\r
  */\r
- set_time_limit(0);\r
+@set_time_limit(0);\r
+/* Remove errors. */\r
+@error_reporting(0);\r
 \r
 if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0)\r
 {\r

patrick-canterino.de