From 5e3990cea394df46eb9249487ae064853d2f512b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 2 Dec 2005 09:46:03 +0000 Subject: [PATCH] fix for xmlrpc problem with recuring event reported on the list and confirmed by conny: the recuring events were using the wrong date-format (timestamp instead iso8601) --- calendar/inc/class.bocal.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.bocal.inc.php b/calendar/inc/class.bocal.inc.php index 33d3b51a86..27bd2dcaf7 100644 --- a/calendar/inc/class.bocal.inc.php +++ b/calendar/inc/class.bocal.inc.php @@ -398,7 +398,7 @@ class bocal } if (count($recur_ids)) { - $events = array_merge($this->read($recur_ids),$events); + $events = array_merge($this->read($recur_ids,null,false,$params['date_format']),$events); } } if ($this->debug && ($this->debug > 0 || $this->debug == 'search'))