Not sure exactly what was fixed.

This commit is contained in:
skeeter 2002-02-18 16:20:13 +00:00
parent 532993d024
commit 6074179f0e

View File

@ -1294,7 +1294,7 @@ class boicalendar
function strip_quotes($str) function strip_quotes($str)
{ {
return str_replace('"','',$str); return str_replace('\"','',$str);
} }
function from_text($str) function from_text($str)
@ -1559,7 +1559,7 @@ class boicalendar
$quote = ''; $quote = '';
if($seperator == '=') if($seperator == '=')
{ {
$quote = '"'; $quote = '\"';
} }
$return_value = $this->fold('X-'.$x_type['name'].$seperator.$quote.$x_type['value'].$quote); $return_value = $this->fold('X-'.$x_type['name'].$seperator.$quote.$x_type['value'].$quote);
@ -1608,7 +1608,7 @@ class boicalendar
$include_datetime = True; $include_datetime = True;
continue; continue;
} }
$quote = (@$this->parameter[$key]['quoted']?'"':''); $quote = (@$this->parameter[$key]['quoted']?'\"':'');
if(isset($event[$key]) && @$this->parameter[$key]['properties'][$property]) if(isset($event[$key]) && @$this->parameter[$key]['properties'][$property])
{ {
$change_text = @$this->parameter[$key]['to_text']; $change_text = @$this->parameter[$key]['to_text'];
@ -1788,7 +1788,7 @@ class boicalendar
case 'function': case 'function':
$str .= ';'.str_replace('_','-',strtoupper($value)).'='; $str .= ';'.str_replace('_','-',strtoupper($value)).'=';
$function = @$this->parameter[$key]['function']; $function = @$this->parameter[$key]['function'];
$str .= (@$this->parameter[$key]['quoted']?'"':'').$this->$function($event[$key]).(@$this->parameter[$key]['quoted']?'"':''); $str .= (@$this->parameter[$key]['quoted']?'\"':'').$this->$function($event[$key]).(@$this->parameter[$key]['quoted']?'\"':'');
break; break;
case 'float': case 'float':
if(!empty($event[$value])) if(!empty($event[$value]))
@ -3004,7 +3004,7 @@ class boicalendar
$this->check_owner($event,$ical['event'][$i],$so_event); $this->check_owner($event,$ical['event'][$i],$so_event);
$event = $so_event->get_cached_event(); $event = $so_event->get_cached_event();
$so_event->add_entry($event); $so_event->add_entry($event);
$event = $so_event->get_cached_event(); // $event = $so_event->get_cached_event();
} }
else else
{ {
@ -3188,7 +3188,7 @@ class boicalendar
$event = $so_event->get_cached_event(); $event = $so_event->get_cached_event();
$so_event->add_entry($event); $so_event->add_entry($event);
$event = $so_event->get_cached_event(); // $event = $so_event->get_cached_event();
} }
} }
Header('Location: '.$GLOBALS['phpgw']->link('/index.php', Header('Location: '.$GLOBALS['phpgw']->link('/index.php',