diff options
author | thomascube <thomas@roundcube.net> | 2010-03-31 15:45:02 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-03-31 15:45:02 +0000 |
commit | bb6294a26e9ce1dca5e0b8f69a1144ea149e05fe (patch) | |
tree | 5a9f8baa22cba5ab12e4db117818ac65b0f31145 | |
parent | 64d855c9b161bac59fef77706d651536bf68c2be (diff) |
Also remove contactgroupmembers when deleting a contact
-rw-r--r-- | program/include/rcube_contacts.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php index 0946b05f2..2964cde49 100644 --- a/program/include/rcube_contacts.php +++ b/program/include/rcube_contacts.php @@ -399,6 +399,13 @@ class rcube_contacts extends rcube_addressbook if (is_array($ids)) $ids = join(',', $ids); + // delete all group members linked with these contacts + if ($this->groups) { + $this->db->query( + "DELETE FROM ".get_table_name('contactgroupmembers')." + WHERE contact_id IN (".$ids.")"); + } + $this->db->query( "UPDATE ".$this->db_name." SET del=1 |