switch off permanent error-log

This commit is contained in:
Ralf Becker 2012-02-10 12:25:39 +00:00
parent 8a5200db66
commit 1a1b5c9d93

View File

@ -720,11 +720,11 @@ class infolog_ical extends infolog_bo
break; break;
default: // X- attribute or other by EGroupware unsupported property 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 // for attributes with multiple values in multiple lines, merge the values
if (isset($taskData['##'.$attribute['name']])) 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( $attribute['values'] = array_merge(
is_array($taskData['##'.$attribute['name']]) ? $taskData['##'.$attribute['name']]['values'] : (array)$taskData['##'.$attribute['name']], is_array($taskData['##'.$attribute['name']]) ? $taskData['##'.$attribute['name']]['values'] : (array)$taskData['##'.$attribute['name']],
$attribute['values']); $attribute['values']);