diff --git a/include/event.php b/include/event.php index 31df86e2c5..f37cdc6d5b 100644 --- a/include/event.php +++ b/include/event.php @@ -10,9 +10,9 @@ function format_event_html($ev) { $bd_format = t('l F d, Y \@ g A') ; // Friday January 18, 2011 @ 8 AM - $o = '
'; + $o = '
' . "\r\n"; - $o .= '

' . bbcode($ev['desc']) . '

'; + $o .= '

' . bbcode($ev['desc']) . '

' . "\r\n"; $o .= '

' . t('Starts:') . ' ' . bbcode($ev['location']) - . '

'; + . '

' . "\r\n"; - $o .= '
'; + $o .= '
' . "\r\n"; return $o; }