From: <par...@us...> - 2010-06-15 15:13:08
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/parse In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv5939/functions/parse Modified Files: Tag: version-2-4 recur_functions.php Log Message: Fix php syntax error from previous cleanup commit. Index: recur_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/recur_functions.php,v retrieving revision 1.20.2.1.2.2 retrieving revision 1.20.2.1.2.3 diff -C2 -d -r1.20.2.1.2.2 -r1.20.2.1.2.3 *** recur_functions.php 27 May 2010 15:40:36 -0000 1.20.2.1.2.2 --- recur_functions.php 15 Jun 2010 15:12:56 -0000 1.20.2.1.2.3 *************** *** 46,50 **** $count--; if (($time >= $mArray_begin) && ! ($time <= $mArray_end) ($count >= 0)) { $recur_data[] = $time; --- 46,50 ---- $count--; if (($time >= $mArray_begin) && ! ($time <= $mArray_end) && ($count >= 0)) { $recur_data[] = $time; |