mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fix TypeError on InfoLog notification
This commit is contained in:
parent
4077d48491
commit
13d68e2e07
@ -1161,6 +1161,12 @@ abstract class Tracking
|
||||
//error_log(__METHOD__.'('.array2string($html_mail).",'$type',".array2string($modified).",'$line',".array2string($data).')');
|
||||
$content = '';
|
||||
|
||||
if (is_array($data))
|
||||
{
|
||||
error_log(__METHOD__."(".json_encode(func_get_args()).") data should be a string, no array!");
|
||||
$data = implode(', ', $data);
|
||||
}
|
||||
|
||||
if ($html_mail)
|
||||
{
|
||||
if (!$this->html_content_allow) $line = Api\Html::htmlspecialchars($line); // XSS
|
||||
|
Loading…
Reference in New Issue
Block a user