diff options
Diffstat (limited to 'apps/dav/lib/CalDAV/PublicCalendar.php')
-rw-r--r-- | apps/dav/lib/CalDAV/PublicCalendar.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/CalDAV/PublicCalendar.php b/apps/dav/lib/CalDAV/PublicCalendar.php index b7ce37760a7..62b07521ec6 100644 --- a/apps/dav/lib/CalDAV/PublicCalendar.php +++ b/apps/dav/lib/CalDAV/PublicCalendar.php @@ -44,7 +44,7 @@ class PublicCalendar extends Calendar { } $obj['acl'] = $this->getChildACL(); - return new PublicCalendarObject($this->caldavBackend, $this->calendarInfo, $obj); + return new PublicCalendarObject($this->caldavBackend, $this->l10n, $this->calendarInfo, $obj); } /** @@ -58,7 +58,7 @@ class PublicCalendar extends Calendar { continue; } $obj['acl'] = $this->getChildACL(); - $children[] = new PublicCalendarObject($this->caldavBackend, $this->calendarInfo, $obj); + $children[] = new PublicCalendarObject($this->caldavBackend, $this->l10n, $this->calendarInfo, $obj); } return $children; } @@ -75,7 +75,7 @@ class PublicCalendar extends Calendar { continue; } $obj['acl'] = $this->getChildACL(); - $children[] = new PublicCalendarObject($this->caldavBackend, $this->calendarInfo, $obj); + $children[] = new PublicCalendarObject($this->caldavBackend, $this->l10n, $this->calendarInfo, $obj); } return $children; } |