aboutsummaryrefslogtreecommitdiffstats
path: root/include/attach.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-09-17 19:38:40 -0700
committerzotlabs <mike@macgirvin.com>2018-09-17 19:38:40 -0700
commitdfdf11d461d9c72fa4fb54fd28949af2a90209b3 (patch)
tree8b3cddfb1f235c60125763066f13c3822c0ac530 /include/attach.php
parentcc5ef57843f4012f7319a0ffd687fe26950a7790 (diff)
parentc4c1b1f5a2ab90873bf1eef31ed794d94fdd6077 (diff)
downloadvolse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.tar.gz
volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.tar.bz2
volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.zip
Merge branch 'dev'
Diffstat (limited to 'include/attach.php')
-rw-r--r--include/attach.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/attach.php b/include/attach.php
index 202412263..4db5bc435 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -1428,6 +1428,8 @@ function attach_delete($channel_id, $resource, $is_photo = 0) {
if(! $r) {
attach_drop_photo($channel_id,$resource);
+ $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo];
+ call_hooks("attach_delete",$arr);
return;
}
@@ -1486,6 +1488,9 @@ function attach_delete($channel_id, $resource, $is_photo = 0) {
intval($channel_id)
);
+ $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo];
+ call_hooks("attach_delete",$arr);
+
file_activity($channel_id, $object, $object['allow_cid'], $object['allow_gid'], $object['deny_cid'], $object['deny_gid'], 'update', true);
return;