Use correct order of parameters in implode function.

This commit is contained in:
Paul Weidner 2020-07-06 08:30:49 -07:00 committed by Michael Stenta
parent fd867b6fbb
commit 5f80906a23
1 changed files with 1 additions and 1 deletions

View File

@ -884,7 +884,7 @@ function farm_log_entity_label_summary($entity_type, $entities, $cutoff = 3) {
}
$count = count($labels);
if ($cutoff == 0 || count($labels) <= $cutoff) {
$output = implode($labels, ', ');
$output = implode(', ', $labels);
}
else {
$output = $labels[0] . ' (+' . ($count - 1) . ' ' . t('more') . ')';