From: <ji...@us...> - 2007-05-22 01:02:45
|
Update of /cvsroot/phpicalendar/phpicalendar3/functions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2918/phpicalendar3/functions Modified Files: class.Daylight.php class.iCalObj.php Log Message: update README Index: class.Daylight.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar3/functions/class.Daylight.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.Daylight.php 9 Apr 2007 13:03:33 -0000 1.3 --- class.Daylight.php 22 May 2007 01:02:45 -0000 1.4 *************** *** 27,29 **** function Daylight() {} ! } ?> \ No newline at end of file --- 27,30 ---- function Daylight() {} ! } ! ?> \ No newline at end of file Index: class.iCalObj.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar3/functions/class.iCalObj.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.iCalObj.php 2 May 2007 13:41:52 -0000 1.3 --- class.iCalObj.php 22 May 2007 01:02:45 -0000 1.4 *************** *** 60,64 **** { case '': ! default: $line = str_replace("$key:","",$line); --- 60,64 ---- { case '': ! break; default: $line = str_replace("$key:","",$line); *************** *** 106,108 **** --- 106,119 ---- } + /** + * Dumps object state for debugging. + * + * @access public + * prints object + */ + function dump() { + echo "<pre>";print_r($this);echo "</pre>"; + return true; + } + } ?> \ No newline at end of file |