From b19b61a3cf00d5173dcecc86b04e17c8cd6023e1 Mon Sep 17 00:00:00 2001 From: "Aleksander Machniak (Kolab Systems)" Date: Fri, 4 Nov 2011 09:35:59 +0100 Subject: [PATCH] Fixed wrong list id in create_group() method --- plugins/kolab_addressbook/lib/rcube_kolab_contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php index 0ec22ac3..edbf8455 100644 --- a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php +++ b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php @@ -768,7 +768,7 @@ class rcube_kolab_contacts extends rcube_addressbook } else { $id = md5($list['uid']); - $this->distlists[$record['ID']] = $list; + $this->distlists[$id] = $list; $result = array('id' => $id, 'name' => $name); }