From 5d83c036e042290e2a6214a1f101fb53a5ed1e19 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 31 Aug 2011 08:01:18 +0000 Subject: [PATCH] forgot to switch of error_log for not found images, as that happens regulary in some parts of EGroupware --- phpgwapi/inc/class.common.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/inc/class.common.inc.php b/phpgwapi/inc/class.common.inc.php index 559d02d9dc..a48c6c701e 100644 --- a/phpgwapi/inc/class.common.inc.php +++ b/phpgwapi/inc/class.common.inc.php @@ -781,7 +781,7 @@ class common return $url; } } - error_log(__METHOD__."('$app', ".array2string($image).", '$extension') NONE found!"); + //error_log(__METHOD__."('$app', ".array2string($image).", '$extension') NONE found!"); return null; } @@ -809,7 +809,7 @@ class common self::get_extension($image, $name); return self::image($app, $name, $extension); } - error_log(__METHOD__."('$app', '$image', '$extension') image NOT found!"); + //error_log(__METHOD__."('$app', '$image', '$extension') image NOT found!"); return null; }