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)

This commit is contained in:
Ralf Becker 2005-12-02 09:46:03 +00:00
parent 9d825d1487
commit 5e3990cea3

View File

@ -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'))