plugins/kolab_addressbook

Thomas Brüderli bruederli at kolabsys.com
Wed May 30 14:47:09 CEST 2012


 plugins/kolab_addressbook/lib/rcube_kolab_contacts.php |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 23833fb8371e4c7035e1d67746acfbb55f0bc482
Author: Thomas Bruederli <bruederli at kolabsys.com>
Date:   Wed May 30 14:46:57 2012 +0200

    Don't trigger error when no group assignments need to be changed

diff --git a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php
index f880551..0d19e4e 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;





More information about the commits mailing list