Update of /cvsroot/phpicalendar/phpicalendar/rss
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30436/phpicalendar/rss
Modified Files:
rss.php
Log Message:
Fix bug for rss at end of month.
Index: rss.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/rss/rss.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** rss.php 13 Feb 2005 17:48:50 -0000 1.24
--- rss.php 1 Mar 2005 05:38:55 -0000 1.25
***************
*** 113,116 ****
--- 113,118 ----
do {
+ $thisdate=date('Ymd', strtotime($thisdate));
+ #echo "Date: $thisdate\n";
$dayofweek = localizeDate ("%a %b %e %Y", strtotime($thisdate));
if (isset($master_array[($thisdate)]) && sizeof($master_array[($thisdate)]) > 0) {
|