[dev] Minor patch for lib/iCalendar.php
Joe Wilson
joe.wilson at mindcandy.org
Thu Jun 12 09:09:31 PDT 2003
Patch to fix a missing "break;" in iCalendar.php. This caused parsing errors as
it fell through to the EXDATE case.
Index: lib/iCalendar.php
===================================================================
RCS file: /usr/local/cvs/horde/horde/lib/iCalendar.php,v
retrieving revision 1.14
diff -u -r1.14 iCalendar.php
--- lib/iCalendar.php 23 Apr 2003 03:02:59 -0000 1.14
+++ lib/iCalendar.php 12 Jun 2003 16:06:57 -0000
@@ -282,6 +282,7 @@
} else {
$this->setAttribute($tag,
$this->_parseDuration($value), $params);
}
+ break;
case 'EXDATE':
More information about the dev
mailing list