diff options
author | Kevin Jardine <kevinjardine@yahoo.com> | 2012-02-02 16:19:37 +0100 |
---|---|---|
committer | Kevin Jardine <kevinjardine@yahoo.com> | 2012-02-02 16:19:37 +0100 |
commit | e0e9ff33a7f5fc334af8127fc8680925ce967d14 (patch) | |
tree | 6384673db77ca63065fbf72cedf236ba5fb081c8 /actions/event_calendar/killrequest.php | |
parent | 5aadcdd48153b4197c44bdacfc504ebd7db34c3f (diff) | |
download | elgg-e0e9ff33a7f5fc334af8127fc8680925ce967d14.tar.gz elgg-e0e9ff33a7f5fc334af8127fc8680925ce967d14.tar.bz2 |
added support for new personal calendar management options
Diffstat (limited to 'actions/event_calendar/killrequest.php')
-rw-r--r-- | actions/event_calendar/killrequest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/event_calendar/killrequest.php b/actions/event_calendar/killrequest.php index b58e804cd..f4f3c3135 100644 --- a/actions/event_calendar/killrequest.php +++ b/actions/event_calendar/killrequest.php @@ -11,7 +11,7 @@ $event = get_entity($event_guid); if (elgg_instanceof($event, 'object', 'event_calendar') && elgg_instanceof($user, 'user') - && event_calendar_personal_can_manage($event,$user_guid) + && $event->canEdit() && check_entity_relationship($user_guid, 'event_calendar_request', $event_guid)) { remove_entity_relationship($user->guid, 'event_calendar_request', $event_guid); |