diff options
author | zotlabs <mike@macgirvin.com> | 2017-06-07 16:26:24 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-06-07 16:26:24 -0700 |
commit | 2e35dc648fd61ae2d39e8c46c14dbf19d31942fb (patch) | |
tree | 60d9cd3d50d3af209d321b3dbdcaa9418e06370b /include/connections.php | |
parent | 59002cb87389159002ab8c426d475edb6d7883be (diff) | |
download | volse-hubzilla-2e35dc648fd61ae2d39e8c46c14dbf19d31942fb.tar.gz volse-hubzilla-2e35dc648fd61ae2d39e8c46c14dbf19d31942fb.tar.bz2 volse-hubzilla-2e35dc648fd61ae2d39e8c46c14dbf19d31942fb.zip |
provide hook when deleting a connection - we need this to clean up dangling PuSH subscriptions
Diffstat (limited to 'include/connections.php')
-rw-r--r-- | include/connections.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/connections.php b/include/connections.php index a2bc11773..c4c719ab8 100644 --- a/include/connections.php +++ b/include/connections.php @@ -341,6 +341,11 @@ function contact_remove($channel_id, $abook_id) { logger('removing contact ' . $abook_id . ' for channel ' . $channel_id,LOGGER_DEBUG); + + $x = [ 'channel_id' => $channel_id, 'abook_id' => $abook_id ]; + call_hooks('connection_remove',$x); + + $archive = get_pconfig($channel_id, 'system','archive_removed_contacts'); if($archive) { q("update abook set abook_archived = 1 where abook_id = %d and abook_channel = %d", |