activitylog: render arrays, required for groups

This commit is contained in:
Thomas Gelf 2015-07-30 11:32:05 +02:00
parent 8a3873fbc1
commit 9ca544e4e1

View File

@ -15,6 +15,8 @@ foreach ($new as $key => $value) {
if ($value === null) continue;
if (is_array($value)) $value = implode(', ', $value);
echo ' <tr><th>' . $this->escape($key) . '</th><td>';
echo $this->escape($value);
echo "</td></tr>\n";