From: <ja...@us...> - 2006-04-13 21:14:29
|
Update of /cvsroot/phpicalendar/phpicalendar/lib/bennu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18717/lib/bennu Modified Files: iCalendar_components.php Log Message: * Half way through filter support for calendar-query REPORTs * About to normalize report_response_helper with propfind_response_helper Index: iCalendar_components.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/lib/bennu/iCalendar_components.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** iCalendar_components.php 13 Apr 2006 05:10:24 -0000 1.1 --- iCalendar_components.php 13 Apr 2006 21:14:17 -0000 1.2 *************** *** 180,196 **** function serialize() { - // Check for validity of the object - if(!$this->is_valid()) { - return false; - } - - // Maybe the object is valid, but there are some required properties that - // have not been given explicit values. In that case, set them to defaults. - foreach($this->valid_properties as $property => $propdata) { - if(($propdata & RFC2445_REQUIRED) && empty($this->properties[$property])) { - $this->add_property($property); - } - } - // Start tag $string = rfc2445_fold('BEGIN:'.$this->name) . RFC2445_CRLF; --- 180,183 ---- *************** *** 408,410 **** // REMINDER: DUE must be later than DTSTART for all components which support both ! ?> \ No newline at end of file --- 395,397 ---- // REMINDER: DUE must be later than DTSTART for all components which support both ! ?> |