Skip to content

Commit c8fa7e7

Browse files
fix(dav): Replaces "Time:" with "Date and time:" in calendar invite email
Signed-off-by: Jérôme Herbinet <[email protected]>
1 parent bf0649d commit c8fa7e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)