diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2020-11-05 18:18:40 +0100 |
---|---|---|
committer | Richard Steinmetz <richard@steinmetz.cloud> | 2020-11-07 14:09:22 +0100 |
commit | f1c242c71da3addb80d1a932e22652f32ff36c64 (patch) | |
tree | ab394cc4d01e84aaac0147b692d6eb52cb1dcc20 /apps/dav | |
parent | 73b3711cf4b81257f289c4c752224e7c9bd74404 (diff) | |
download | nextcloud-server-f1c242c71da3addb80d1a932e22652f32ff36c64.tar.gz nextcloud-server-f1c242c71da3addb80d1a932e22652f32ff36c64.zip |
Use png icons in caldav reminder emails
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php | 8 | ||||
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php | 8 |
2 files changed, 8 insertions, 8 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')); } } diff --git a/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php b/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php index 47fcc1680f6..c243522b78e 100644 --- a/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php +++ b/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php @@ -478,7 +478,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i)) ->method('imagePath') - ->with('core', 'actions/info.svg') + ->with('core', 'actions/info.png') ->willReturn('imagePath1'); $this->urlGenerator @@ -490,7 +490,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i + 2)) ->method('imagePath') - ->with('core', 'places/calendar.svg') + ->with('core', 'places/calendar.png') ->willReturn('imagePath2'); $this->urlGenerator @@ -502,7 +502,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i + 4)) ->method('imagePath') - ->with('core', 'actions/address.svg') + ->with('core', 'actions/address.png') ->willReturn('imagePath3'); $this->urlGenerator @@ -514,7 +514,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i + 6)) ->method('imagePath') - ->with('core', 'actions/more.svg') + ->with('core', 'actions/more.png') ->willReturn('imagePath4'); $this->urlGenerator |