diff --git a/application/views/scripts/show/activitylog-create.phtml b/application/views/scripts/show/activitylog-create.phtml index 67efbc6a..5f92930d 100644 --- a/application/views/scripts/show/activitylog-create.phtml +++ b/application/views/scripts/show/activitylog-create.phtml @@ -15,6 +15,8 @@ foreach ($new as $key => $value) { if ($value === null) continue; + if (is_array($value)) $value = implode(', ', $value); + echo ' ' . $this->escape($key) . ''; echo $this->escape($value); echo "\n";