From: <cl...@us...> - 2004-07-29 06:18:03
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6831/functions Modified Files: ical_parser.php Log Message: Doesn't try to get modtime of webcals. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.171 retrieving revision 1.172 diff -C2 -d -r1.171 -r1.172 *** ical_parser.php 22 Jul 2004 02:25:42 -0000 1.171 --- ical_parser.php 29 Jul 2004 06:17:54 -0000 1.172 *************** *** 106,110 **** //Mod time ! $actual_mtime = filemtime($filename); // Set a value so we can check to make sure $master_array contains valid data --- 106,112 ---- //Mod time ! if ($is_webcal == false) { ! $actual_mtime = filemtime($filename); ! } // Set a value so we can check to make sure $master_array contains valid data |