From a86a5ce527b22bdc8d884897340078b50d2e23aa Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 22 Nov 2018 15:19:34 +0000 Subject: [PATCH] Fix recurrence text when there are exceptions defined --- plugins/libcalendaring/libcalendaring.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/libcalendaring/libcalendaring.php b/plugins/libcalendaring/libcalendaring.php index a3cf48d2..0ee7af9a 100644 --- a/plugins/libcalendaring/libcalendaring.php +++ b/plugins/libcalendaring/libcalendaring.php @@ -835,7 +835,7 @@ class libcalendaring extends rcube_plugin $more = true; } - $output = '; ' . $this->gettext('except') . ' ' . join(', ', $exdates) + $output .= '; ' . $this->gettext('except') . ' ' . join(', ', $exdates) . ($more ? '...' : ''); }