? patch
Index: event.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/event/event.module,v
retrieving revision 1.134
diff -u -F^f -r1.134 event.module
--- event.module	25 May 2005 21:30:53 -0000	1.134
+++ event.module	29 Jun 2005 00:05:54 -0000
@@ -627,13 +627,11 @@ function event_calendar_ical($stamp, $du
     $event = array();
     $node = node_load(array('nid' => $nid->nid));
     if (event_filter_node($node, $types, $terms)) {
-      $node->start = ($node->event_start - $node->start_offset);
-      $node->end = ($node->event_end - $node->end_offset);
       // Allow modules to affect item fields
       node_invoke_nodeapi($node, 'view');
       node_invoke_nodeapi($node, 'ical item');
-      $event['start'] = $node->start;
-      $event['end'] = $node->end;
+      $event['start'] = $node->event_start;
+      $event['end'] = $node->event_end;
       $event['location'] = $node->event_location;
       $event['summary'] = $node->title;
       $event['description'] = ($node->teaser ? $node->teaser : $node->body);
@@ -1830,4 +1828,4 @@ function event_help($section) {
   }
 }
 
-?>
\ No newline at end of file
+?>
Index: ical.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/event/ical.inc,v
retrieving revision 1.2
diff -u -F^f -r1.2 ical.inc
--- ical.inc	25 May 2005 21:30:53 -0000	1.2
+++ ical.inc	29 Jun 2005 00:05:54 -0000
@@ -32,7 +32,7 @@
  */
 function ical_export($events, $calname = NULL) {
   $output .= "BEGIN:VCALENDAR\nVERSION:2.0\n";
-  $output .= "X-WR-CALNAME:" . ($calname ? $calname : variable_get('site_name', '')) . "\n";
+  $output .= 'X-WR-CALNAME:'. variable_get('site_name', '') .' | '. $calname ."\n";
   $output .= "PRODID:-//strange bird labs//Drupal iCal API//EN\n";
   foreach ($events as $uid => $event) {
     $output .= "BEGIN:VEVENT\n";
@@ -327,4 +327,4 @@ function _ical_calcOffset($offset_str) {
   return $secs;
 }
 
-?>
\ No newline at end of file
+?>
