Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv29812/functions
Modified Files:
ical_parser.php
Log Message:
Switched it to not save parsed combined cals.
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.94
retrieving revision 1.95
diff -C2 -d -r1.94 -r1.95
*** ical_parser.php 15 Sep 2003 01:00:44 -0000 1.94
--- ical_parser.php 15 Sep 2003 02:54:03 -0000 1.95
***************
*** 32,36 ****
// reading the file if it's allowed
$parse_file = true;
! if ($is_webcal == false && $save_parsed_cals == 'yes') {
$realcal_mtime = filemtime($filename);
$parsedcal = $tmp_dir.'/parsedcal-'.$cal_filename.'-'.$this_year;
--- 32,36 ----
// reading the file if it's allowed
$parse_file = true;
! if (($is_webcal == false) && ($save_parsed_cals == 'yes') && ($cal != 'all_calenders_combined971')) {
$realcal_mtime = filemtime($filename);
$parsedcal = $tmp_dir.'/parsedcal-'.$cal_filename.'-'.$this_year;
|