Update of /cvsroot/phpicalendar/phpicalendar/functions/init
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6403/functions/init
Modified Files:
date_range.php
Log Message:
expand search range;fix todo display
Index: date_range.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/date_range.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** date_range.php 24 Dec 2008 21:09:31 -0000 1.6
--- date_range.php 26 Dec 2008 08:26:31 -0000 1.7
***************
*** 38,41 ****
--- 38,45 ----
$mArray_end = time();
break;
+ case 'search':
+ $mArray_begin = mktime (0,0,0,1,1,1970);
+ $mArray_end = mktime (0,0,0,1,31,2030);
+ break;
default:
$mArray_begin = mktime (0,0,0,12,21,($this_year - 1));
|