From 3ecd71cbc795bd5188f10d3c9302b426d27f7300 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 9 Feb 2012 20:15:18 +0000 Subject: [PATCH] switch off permanent error-log --- infolog/inc/class.infolog_ical.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infolog/inc/class.infolog_ical.inc.php b/infolog/inc/class.infolog_ical.inc.php index 68f6e17113..be4e7ddf86 100644 --- a/infolog/inc/class.infolog_ical.inc.php +++ b/infolog/inc/class.infolog_ical.inc.php @@ -720,11 +720,11 @@ class infolog_ical extends infolog_bo break; default: // X- attribute or other by EGroupware unsupported property - error_log(__METHOD__."() $attribute[name] = ".array2string($attribute)); + //error_log(__METHOD__."() $attribute[name] = ".array2string($attribute)); // for attributes with multiple values in multiple lines, merge the values if (isset($taskData['##'.$attribute['name']])) { - error_log(__METHOD__."() taskData['##$attribute[name]'] = ".array2string($taskData['##'.$attribute['name']])); + //error_log(__METHOD__."() taskData['##$attribute[name]'] = ".array2string($taskData['##'.$attribute['name']])); $attribute['values'] = array_merge( is_array($taskData['##'.$attribute['name']]) ? $taskData['##'.$attribute['name']]['values'] : (array)$taskData['##'.$attribute['name']], $attribute['values']);