diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-07-06 13:20:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 13:20:55 +0200 |
commit | d78449c01cf1cc608eca7a4d6ae675f1bc3e8aeb (patch) | |
tree | d8da7bbeb332f31bd17330db59a0c9f0a8d63426 | |
parent | 6c825ee9a06d205e4e3b2b2bd2eb86e2039125bb (diff) | |
parent | 4d299d1c66e97b7f115873203344958b4a961a20 (diff) | |
download | nextcloud-server-d78449c01cf1cc608eca7a4d6ae675f1bc3e8aeb.tar.gz nextcloud-server-d78449c01cf1cc608eca7a4d6ae675f1bc3e8aeb.zip |
Merge pull request #18895 from nextcloud/bugfix/noid/fix_birthday_calendar_color
Changes the Birthday calendar color to slightly brighter one
-rw-r--r-- | apps/dav/lib/CalDAV/BirthdayService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/BirthdayService.php b/apps/dav/lib/CalDAV/BirthdayService.php index b492d4219c7..e64e886a01c 100644 --- a/apps/dav/lib/CalDAV/BirthdayService.php +++ b/apps/dav/lib/CalDAV/BirthdayService.php @@ -165,7 +165,7 @@ class BirthdayService { } $this->calDavBackEnd->createCalendar($principal, self::BIRTHDAY_CALENDAR_URI, [ '{DAV:}displayname' => 'Contact birthdays', - '{http://apple.com/ns/ical/}calendar-color' => '#FFFFCA', + '{http://apple.com/ns/ical/}calendar-color' => '#E9D859', 'components' => 'VEVENT', ]); |