From 7de0aa468c32e570087f6f02bf6ad41bf1b5928b Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 10 May 2012 21:25:57 +0200 Subject: [PATCH] Increment sequence property when updating an event --- plugins/libkolab/lib/kolab_format_event.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/libkolab/lib/kolab_format_event.php b/plugins/libkolab/lib/kolab_format_event.php index 0552025e..42c323c3 100644 --- a/plugins/libkolab/lib/kolab_format_event.php +++ b/plugins/libkolab/lib/kolab_format_event.php @@ -144,8 +144,8 @@ class kolab_format_event extends kolab_format if (!empty($object['uid'])) $this->obj->setUid($object['uid']); - // TODO: increase sequence - // $this->obj->setSequence($this->obj->sequence()+1); + // increment sequence + $this->obj->setSequence($this->obj->sequence()+1); // do the hard work of setting object values $this->obj->setStart(self::get_datetime($object['start'], null, $object['allday']));