Fixed wrong list id in create_group() method
This commit is contained in:
parent
a0c3d7b7ae
commit
b19b61a3cf
1 changed files with 1 additions and 1 deletions
|
@ -768,7 +768,7 @@ class rcube_kolab_contacts extends rcube_addressbook
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$id = md5($list['uid']);
|
$id = md5($list['uid']);
|
||||||
$this->distlists[$record['ID']] = $list;
|
$this->distlists[$id] = $list;
|
||||||
$result = array('id' => $id, 'name' => $name);
|
$result = array('id' => $id, 'name' => $name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue