diff options
author | Max Kostikov <max@kostikov.co> | 2018-09-27 23:55:20 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2018-09-27 23:55:20 +0200 |
commit | 9f89f3190a49e454bc8ea9f1e24db03374edb491 (patch) | |
tree | 773f14a7edfb352d1085773e3540513e88b186d2 /include/connections.php | |
parent | 71931b423c656aa91e07d524adbca571d5eea058 (diff) | |
download | volse-hubzilla-9f89f3190a49e454bc8ea9f1e24db03374edb491.tar.gz volse-hubzilla-9f89f3190a49e454bc8ea9f1e24db03374edb491.tar.bz2 volse-hubzilla-9f89f3190a49e454bc8ea9f1e24db03374edb491.zip |
Update connections.php
Diffstat (limited to 'include/connections.php')
-rw-r--r-- | include/connections.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/connections.php b/include/connections.php index 129bcdc8d..d97ea3887 100644 --- a/include/connections.php +++ b/include/connections.php @@ -296,7 +296,7 @@ function remove_all_xchan_resources($xchan, $channel_id = 0) { $r = q("delete from event where event_xchan = '%s'", dbesc($xchan) ); - $r = q("delete from group_member where xchan = '%s'", + $r = q("delete from pgrp_member where xchan = '%s'", dbesc($xchan) ); $r = q("delete from mail where ( from_xchan = '%s' or to_xchan = '%s' )", @@ -402,7 +402,7 @@ function contact_remove($channel_id, $abook_id) { intval($channel_id) ); - $r = q("delete from group_member where xchan = '%s' and uid = %d", + $r = q("delete from pgrp_member where xchan = '%s' and uid = %d", dbesc($abook['abook_xchan']), intval($channel_id) ); |