Skip to content

Commit 1ffdebd

Browse files
fix(dav): Replaces "Time:" with "Date and time:" in calendar invite email
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
1 parent 2fa099a commit 1ffdebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/lib/CalDAV/Schedule/IMipService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ public function addBulletList(IEMailTemplate $template, VEvent $vevent, $data) {
539539
$data['meeting_title_html'] ?? $data['meeting_title'], $this->l10n->t('Title:'),
540540
$this->getAbsoluteImagePath('caldav/title.png'), $data['meeting_title'], '', IMipPlugin::IMIP_INDENT);
541541
if ($data['meeting_when'] !== '') {
542-
$template->addBodyListItem($data['meeting_when_html'] ?? $data['meeting_when'], $this->l10n->t('Time:'),
542+
$template->addBodyListItem($data['meeting_when_html'] ?? $data['meeting_when'], $this->l10n->t('Date and time:'),
543543
$this->getAbsoluteImagePath('caldav/time.png'), $data['meeting_when'], '', IMipPlugin::IMIP_INDENT);
544544
}
545545
if ($data['meeting_location'] !== '') {

0 commit comments

Comments
 (0)