From dcd9996f66d2a7be2dfd1a4e0e450545e70ade70 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Thu, 19 Jul 2018 14:30:25 +0200 Subject: [PATCH] Minor - change ui --- plugin/learning_calendar/LearningCalendarPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/learning_calendar/LearningCalendarPlugin.php b/plugin/learning_calendar/LearningCalendarPlugin.php index ae969440fa..fccad4192d 100644 --- a/plugin/learning_calendar/LearningCalendarPlugin.php +++ b/plugin/learning_calendar/LearningCalendarPlugin.php @@ -635,7 +635,7 @@ class LearningCalendarPlugin extends Plugin $html = ''; if (!empty($list)) { - $html = implode('
', array_column($list, 'name')); + $html = implode(' ', array_column($list, 'name')); } return $html;