From 23833fb8371e4c7035e1d67746acfbb55f0bc482 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 30 May 2012 14:46:57 +0200 Subject: [PATCH] Don't trigger error when no group assignments need to be changed --- plugins/kolab_addressbook/lib/rcube_kolab_contacts.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php index f8805517..0d19e4eb 100644 --- a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php +++ b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php @@ -851,6 +851,8 @@ class rcube_kolab_contacts extends rcube_addressbook if ($added) $saved = $this->storagefolder->save($list, 'distribution-list', $list['uid']); + else + $saved = true; if (!$saved) { raise_error(array( @@ -859,6 +861,7 @@ class rcube_kolab_contacts extends rcube_addressbook 'message' => "Error saving distribution-list to Kolab server"), true, false); $added = false; + $this->set_error(self::ERROR_SAVING, 'errorsaving'); } else { $this->distlists[$gid] = $list;