diff options
author | thomascube <thomas@roundcube.net> | 2011-02-15 21:00:48 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-02-15 21:00:48 +0000 |
commit | 360bd3ea740073b83817183581893681e13a8570 (patch) | |
tree | dcbb1d856ceb50d1003fbe811aea07df26cb6096 /program/include/rcube_addressbook.php | |
parent | bfb7d6e6819c8453d3e7c5c6d4fb261af078b176 (diff) |
Allow group identifiers to be changed upon renaming (used in LDAP)
Diffstat (limited to 'program/include/rcube_addressbook.php')
-rw-r--r-- | program/include/rcube_addressbook.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcube_addressbook.php b/program/include/rcube_addressbook.php index d1b0f6281..9e8254ca4 100644 --- a/program/include/rcube_addressbook.php +++ b/program/include/rcube_addressbook.php @@ -310,9 +310,10 @@ abstract class rcube_addressbook * * @param string Group identifier * @param string New name to set for this group + * @param string New group identifier (if changed, otherwise don't set) * @return boolean New name on success, false if no data was changed */ - function rename_group($gid, $newname) + function rename_group($gid, $newname, &$newid) { /* empty for address books don't supporting groups */ return false; |