@@ -500,23 +500,23 @@ private function addBulletList(IEMailTemplate $template, IL10N $l10n, $vevent) {
500
500
501
501
if ($ vevent ->SUMMARY ) {
502
502
$ template ->addBodyListItem ($ vevent ->SUMMARY , $ l10n ->t ('Title: ' ),
503
- $ this ->getAbsoluteImagePath ('filetypes/text .svg ' ),'' ,'' ,self ::IMIP_INDENT );
503
+ $ this ->getAbsoluteImagePath ('caldav/title .svg ' ),'' ,'' ,self ::IMIP_INDENT );
504
504
}
505
505
$ meetingWhen = $ this ->generateWhenString ($ l10n , $ vevent );
506
506
if ($ meetingWhen ) {
507
507
$ template ->addBodyListItem ($ meetingWhen , $ l10n ->t ('Time: ' ),
508
- $ this ->getAbsoluteImagePath ('filetypes/text-calendar .svg ' ),'' ,'' ,self ::IMIP_INDENT );
508
+ $ this ->getAbsoluteImagePath ('caldav/time .svg ' ),'' ,'' ,self ::IMIP_INDENT );
509
509
}
510
510
if ($ vevent ->LOCATION ) {
511
511
$ template ->addBodyListItem ($ vevent ->LOCATION , $ l10n ->t ('Location: ' ),
512
- $ this ->getAbsoluteImagePath ('filetypes /location.svg ' ),'' ,'' ,self ::IMIP_INDENT );
512
+ $ this ->getAbsoluteImagePath ('caldav /location.svg ' ),'' ,'' ,self ::IMIP_INDENT );
513
513
}
514
514
if ($ vevent ->URL ) {
515
515
$ template ->addBodyListItem (sprintf ('<a href="%s">%s</a> ' ,
516
516
htmlspecialchars ($ vevent ->URL ),
517
517
htmlspecialchars ($ vevent ->URL )),
518
518
$ l10n ->t ('Link: ' ),
519
- $ this ->getAbsoluteImagePath ('filetypes /link.svg ' ),
519
+ $ this ->getAbsoluteImagePath ('caldav /link.svg ' ),
520
520
$ vevent ->URL ,'' ,self ::IMIP_INDENT );
521
521
}
522
522
@@ -525,7 +525,7 @@ private function addBulletList(IEMailTemplate $template, IL10N $l10n, $vevent) {
525
525
/* Put description last, like an email body, since it can be arbitrarily long */
526
526
if ($ vevent ->DESCRIPTION ) {
527
527
$ template ->addBodyListItem ($ vevent ->DESCRIPTION , $ l10n ->t ('Description: ' ),
528
- $ this ->getAbsoluteImagePath ('filetypes/text .svg ' ),'' ,'' ,self ::IMIP_INDENT );
528
+ $ this ->getAbsoluteImagePath ('caldav/description .svg ' ),'' ,'' ,self ::IMIP_INDENT );
529
529
}
530
530
}
531
531
@@ -566,7 +566,7 @@ private function addAttendees(IEMailTemplate $template, IL10N $l10n, VEvent $vev
566
566
$ organizerText .= ' ✔︎ ' ;
567
567
}
568
568
$ template ->addBodyListItem ($ organizerHTML , $ l10n ->t ('Organizer: ' ),
569
- $ this ->getAbsoluteImagePath ('filetypes/text-vcard .svg ' ),
569
+ $ this ->getAbsoluteImagePath ('caldav/organizer .svg ' ),
570
570
$ organizerText ,'' ,self ::IMIP_INDENT );
571
571
}
572
572
@@ -595,7 +595,7 @@ private function addAttendees(IEMailTemplate $template, IL10N $l10n, VEvent $vev
595
595
}
596
596
597
597
$ template ->addBodyListItem (implode ('<br/> ' ,$ attendeesHTML ), $ l10n ->t ('Attendees: ' ),
598
- $ this ->getAbsoluteImagePath ('filetypes/text-vcard .svg ' ),
598
+ $ this ->getAbsoluteImagePath ('caldav/attendees .svg ' ),
599
599
implode ("\n" ,$ attendeesText ),'' ,self ::IMIP_INDENT );
600
600
}
601
601
0 commit comments