From c3797743006bce467ad3595a7847755a3f678347 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 14 Jun 2011 21:22:52 -0700 Subject: [PATCH] add some whitespace in event html --- include/event.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/event.php b/include/event.php index 31df86e2c..f37cdc6d5 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; }