diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-04-10 15:53:39 -0400 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-04-10 16:03:38 -0400 |
commit | 64d3301523dce1032f7e20f03452573c125f8b17 (patch) | |
tree | c4e58d373607d9c8df81748677b36568492602d9 /apps/calendar/lib/app.php | |
parent | eaa649cfb2e178765782c427098ecb82627b073b (diff) | |
download | nextcloud-server-64d3301523dce1032f7e20f03452573c125f8b17.tar.gz nextcloud-server-64d3301523dce1032f7e20f03452573c125f8b17.zip |
make shared events editable and add (empty) classes for alarm and attendees
Diffstat (limited to 'apps/calendar/lib/app.php')
-rw-r--r-- | apps/calendar/lib/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/lib/app.php b/apps/calendar/lib/app.php index 9febf389f50..58cc34658c6 100644 --- a/apps/calendar/lib/app.php +++ b/apps/calendar/lib/app.php @@ -80,8 +80,8 @@ class OC_Calendar_App{ * @param bool $security - check access rights or not * @return mixed - bool / object */ - public static function getVCalendar($id, $security = true){ - $event_object = self::getEventObject($id, $security); + public static function getVCalendar($id, $security = true, $shared = false){ + $event_object = self::getEventObject($id, $security, $shared); if($event_object === false){ return false; } |