--- event.theme	2007-04-27 11:54:54.000000000 +0200
+++ event.theme.fixed	2008-02-23 14:31:12.000000000 +0100
@@ -83,7 +83,8 @@
   if ($node->event_start != $node->event_end) {
     $output .= '<div class="end">'. t('End: ') . $node->end_time_format .'</div>'."\n";
   }
-  $output .= '<div class="content">'. check_markup($node->teaser) ."</div>\n";
+  node_build_content($node, FALSE, FALSE);
+  $output .= '<div class="content">'. drupal_render($node->content) .'</div></div>'."\n";
   $output .= '<div class="links">'. theme('links', $node->event_links) ."\n</div>";
   $output .= "</div>\n";
   return $output;
@@ -249,7 +250,8 @@
       $output .= '<div class="end">'. t('End: ') . $node->end_format .'</div>'."\n";
     }
   }
-  $output .= '<div class="content">'. check_markup($node->teaser) .'</div></div>'."\n";
+  node_build_content($node, FALSE, FALSE);
+  $output .= '<div class="content">'. drupal_render($node->content) .'</div></div>'."\n";
 
   $links = $node->event_links;
   $links['more_info'] = array(
@@ -311,7 +313,8 @@
       $output .= '<div class="end">'. t('End') .': '. $node->end_format .'</div>'."\n";
     }
   }
-  $output .= '<div class="content">'. check_markup($node->teaser) .'</div></div>'."\n";
+  node_build_content($node, FALSE, FALSE);
+  $output .= '<div class="content">'. drupal_render($node->content) .'</div></div>'."\n";
 
   $links = $node->event_links;
   $links['more_info'] = array(
