diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-06-26 09:38:33 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-06-26 09:38:33 +0200 |
commit | 6ff6bedea4f1aae9ded9b6e3b7363ee79b2f4fed (patch) | |
tree | 0c9fd88e331445910831408904afb90033ec3271 /program/steps/addressbook | |
parent | bdaa4b2cb615e642ff7a3644bdfbb096406d29ff (diff) |
Disable dragging/copying of contact groups
Diffstat (limited to 'program/steps/addressbook')
-rw-r--r-- | program/steps/addressbook/copy.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/program/steps/addressbook/copy.inc b/program/steps/addressbook/copy.inc index 480a9b52e..59b4ffcc6 100644 --- a/program/steps/addressbook/copy.inc +++ b/program/steps/addressbook/copy.inc @@ -57,6 +57,10 @@ foreach ($cids as $source => $cid) foreach ($cid as $cid) { $a_record = $CONTACTS->get_record($cid, true); + // avoid copying groups + if ($a_record['_type'] == 'group') + continue; + // Check if contact exists, if so, we'll need it's ID // Note: Some addressbooks allows empty email address field if (!empty($a_record['email'])) |