From c73eded2585817f2ab1d91a7964cff519e5aa217 Mon Sep 17 00:00:00 2001 From: "Stefan E. Funk" <funk@sub.uni-goettingen.de> Date: Thu, 22 Jan 2015 17:35:28 +0100 Subject: [PATCH] Removed error_reporting from some php classes to avoid massive logging to apache error log. --- info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra-crud.php | 2 +- info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra.php | 2 +- info.textgrid.middleware.tgauth.rbac/rbacSoap/tgsystem.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra-crud.php b/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra-crud.php index b007c04..f249dcf 100755 --- a/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra-crud.php +++ b/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra-crud.php @@ -15,7 +15,7 @@ require_once( "TgExtraCrud.class.php" ); // Dont be so verbose with messages and notices. -//error_reporting( E_ERROR | E_USER_ERROR ); +error_reporting( E_ERROR | E_USER_ERROR ); // ############################################################# diff --git a/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra.php b/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra.php index bc1a6f0..a75bc59 100755 --- a/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra.php +++ b/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgextra.php @@ -15,7 +15,7 @@ require_once( "TgExtra.class.php" ); // Dont be so verbose with messages and notices. -//error_reporting( E_ERROR | E_USER_ERROR ); +error_reporting( E_ERROR | E_USER_ERROR ); // ############################################################# diff --git a/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgsystem.php b/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgsystem.php index 7ac8d53..d55efd8 100755 --- a/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgsystem.php +++ b/info.textgrid.middleware.tgauth.rbac/rbacSoap/tgsystem.php @@ -13,7 +13,7 @@ require_once( "TgSystem.class.php" ); // Dont be so verbose with messages and notices. -//error_reporting( E_ERROR | E_USER_ERROR ); +error_reporting( E_ERROR | E_USER_ERROR ); // ############################################################# -- GitLab