diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-11-11 12:45:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-11 12:45:23 +0100 |
commit | 0c7bed26e843a78ebc0a4ab624bfc24b6fb527f0 (patch) | |
tree | b41e3e8c0e4b84fa59b6d4bfdaae9c863847e0ea /apps/dav/lib/CalDAV | |
parent | 410e295d01f8310e5497dab079915e4a835730d8 (diff) | |
parent | f1c242c71da3addb80d1a932e22652f32ff36c64 (diff) | |
download | nextcloud-server-0c7bed26e843a78ebc0a4ab624bfc24b6fb527f0.tar.gz nextcloud-server-0c7bed26e843a78ebc0a4ab624bfc24b6fb527f0.zip |
Merge pull request #23915 from st3iny/fix/noid/png-icons-in-caldav-reminder-emails
Use png icons in caldav reminder emails
Diffstat (limited to 'apps/dav/lib/CalDAV')
-rw-r--r-- | apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php b/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php index 754cdc8c616..e63f08646be 100644 --- a/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php +++ b/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php @@ -155,18 +155,18 @@ class EmailProvider extends AbstractProvider { string $calendarDisplayName, VEvent $vevent):void { $template->addBodyListItem($calendarDisplayName, $l10n->t('Calendar:'), - $this->getAbsoluteImagePath('actions/info.svg')); + $this->getAbsoluteImagePath('actions/info.png')); $template->addBodyListItem($this->generateDateString($l10n, $vevent), $l10n->t('Date:'), - $this->getAbsoluteImagePath('places/calendar.svg')); + $this->getAbsoluteImagePath('places/calendar.png')); if (isset($vevent->LOCATION)) { $template->addBodyListItem((string) $vevent->LOCATION, $l10n->t('Where:'), - $this->getAbsoluteImagePath('actions/address.svg')); + $this->getAbsoluteImagePath('actions/address.png')); } if (isset($vevent->DESCRIPTION)) { $template->addBodyListItem((string) $vevent->DESCRIPTION, $l10n->t('Description:'), - $this->getAbsoluteImagePath('actions/more.svg')); + $this->getAbsoluteImagePath('actions/more.png')); } } |