From: Georg Ehrke Date: Mon, 14 May 2012 13:38:50 +0000 (+0200) Subject: check user permissions in calendar's changepermission.php X-Git-Tag: v4.0.0RC2~67 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9c8eb104b6595b47bc0304f11645fca2b7290f0d;p=nextcloud-server.git check user permissions in calendar's changepermission.php --- diff --git a/apps/calendar/ajax/share/changepermission.php b/apps/calendar/ajax/share/changepermission.php index e4a4f186ab0..2737420c94e 100755 --- a/apps/calendar/ajax/share/changepermission.php +++ b/apps/calendar/ajax/share/changepermission.php @@ -17,6 +17,14 @@ switch($idtype){ OCP\JSON::error(array('message'=>'unexspected parameter')); exit; } +if($idtype == 'calendar' && !OC_Calendar_App::getCalendar($id)){ + OCP\JSON::error(array('message'=>'permission denied')); + exit; +} +if($idtype == 'event' && !OC_Calendar_App::getEventObject($id)){ + OCP\JSON::error(array('message'=>'permission denied')); + exit; +} $sharewith = $_GET['sharewith']; $sharetype = strip_tags($_GET['sharetype']); switch($sharetype){