diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-30 19:28:07 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-30 19:28:07 +0200 |
commit | 40d419d994811bad3aab147eec3ddc54d0bad3b2 (patch) | |
tree | bab68381e9de45aba6e54453be3744d44a9934d4 /program/lib/Roundcube/rcube_contacts.php | |
parent | 0826b2a896b3898c1f7f442ba01734ed04387f87 (diff) |
Fix removal of a contact from a group in LDAP addressbook (#1489081)
Diffstat (limited to 'program/lib/Roundcube/rcube_contacts.php')
-rw-r--r-- | program/lib/Roundcube/rcube_contacts.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/program/lib/Roundcube/rcube_contacts.php b/program/lib/Roundcube/rcube_contacts.php index e4fd7dc10..6693e558b 100644 --- a/program/lib/Roundcube/rcube_contacts.php +++ b/program/lib/Roundcube/rcube_contacts.php @@ -879,9 +879,10 @@ class rcube_contacts extends rcube_addressbook /** * Add the given contact records the a certain group * - * @param string Group identifier - * @param array List of contact identifiers to be added - * @return int Number of contacts added + * @param string Group identifier + * @param array|string List of contact identifiers to be added + * + * @return int Number of contacts added */ function add_to_group($group_id, $ids) { @@ -926,9 +927,10 @@ class rcube_contacts extends rcube_addressbook /** * Remove the given contact records from a certain group * - * @param string Group identifier - * @param array List of contact identifiers to be removed - * @return int Number of deleted group members + * @param string Group identifier + * @param array|string List of contact identifiers to be removed + * + * @return int Number of deleted group members */ function remove_from_group($group_id, $ids) { |