mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-25 14:54:25 +02:00
activitylog: render arrays, required for groups
This commit is contained in:
parent
8a3873fbc1
commit
9ca544e4e1
@ -15,6 +15,8 @@ foreach ($new as $key => $value) {
|
|||||||
|
|
||||||
if ($value === null) continue;
|
if ($value === null) continue;
|
||||||
|
|
||||||
|
if (is_array($value)) $value = implode(', ', $value);
|
||||||
|
|
||||||
echo ' <tr><th>' . $this->escape($key) . '</th><td>';
|
echo ' <tr><th>' . $this->escape($key) . '</th><td>';
|
||||||
echo $this->escape($value);
|
echo $this->escape($value);
|
||||||
echo "</td></tr>\n";
|
echo "</td></tr>\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user