diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-04-30 12:08:19 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-04-30 12:08:19 +0200 |
commit | a04689b7840f336fed92ec648754cca02dcd90f0 (patch) | |
tree | cdcc3f5cd58a109f336d30329baec5e7b82db685 /view | |
parent | 0b062d0b8ae89b40b4e036f874f6af3780c30451 (diff) | |
download | volse-hubzilla-a04689b7840f336fed92ec648754cca02dcd90f0.tar.gz volse-hubzilla-a04689b7840f336fed92ec648754cca02dcd90f0.tar.bz2 volse-hubzilla-a04689b7840f336fed92ec648754cca02dcd90f0.zip |
do not allow editing events that do not belong to us
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/cdav_calendar.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/view/tpl/cdav_calendar.tpl b/view/tpl/cdav_calendar.tpl index 8b91275ee..827c57b96 100644 --- a/view/tpl/cdav_calendar.tpl +++ b/view/tpl/cdav_calendar.tpl @@ -322,7 +322,11 @@ $(document).ready(function() { $('#id_categories').tagsinput('add', '{{$categories}}'), $('#id_description').val(resource.description); $('#id_location').val(resource.location); - $('#event_submit').html('{{$update}}'); + + if(resource.event_xchan !== '{{$channel_hash}}') + $('#event_submit').hide(); + else + $('#event_submit').html('{{$update}}'); } }); |