From 5477c71045a5a62e67845cab3befdd4dbe85fcfa Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 15 Jul 2008 06:48:59 +0000 Subject: [PATCH] "silenced autoloaded class ..." --- phpgwapi/inc/common_functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/common_functions.inc.php b/phpgwapi/inc/common_functions.inc.php index c5be0ee671..d56d537d1f 100755 --- a/phpgwapi/inc/common_functions.inc.php +++ b/phpgwapi/inc/common_functions.inc.php @@ -1373,7 +1373,7 @@ function __autoload($class) { if (file_exists($file = EGW_INCLUDE_ROOT.'/'.$app.'/inc/class.'.$class.'.inc.php')) { - error_log("autoloaded class $class from $file"); + //error_log("autoloaded class $class from $file"); include_once($file); } }