From: <cl...@us...> - 2004-10-01 23:42:54
|
Update of /cvsroot/phpicalendar/phpicalendar/rss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1485/rss Modified Files: rss.php Log Message: Test fix. Index: rss.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/rss/rss.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** rss.php 2 Sep 2004 18:44:52 -0000 1.20 --- rss.php 1 Oct 2004 23:42:41 -0000 1.21 *************** *** 19,24 **** // calculate a value for Last Modified and ETag ! $filemod = filemtime("$calendar_path/$cal.ics"); ! $filemodtime = date("r", $filemod); //send relevant headers --- 19,25 ---- // calculate a value for Last Modified and ETag ! $cal = urldecode($cal); ! $filemod = @filemtime("$calendar_path/$cal.ics"); ! $filemodtime = @date("r", $filemod); //send relevant headers |