diff options
author | Paul <tacid@tacid.kiev.ua> | 2013-01-29 18:57:52 +0200 |
---|---|---|
committer | Paul <tacid@tacid.kiev.ua> | 2013-01-29 18:57:52 +0200 |
commit | f4171ae7ac428c702a1c23f037fc022cc687bbea (patch) | |
tree | 638e0937d204298a026476e2217bf8824dd87027 | |
parent | b9d17033719d01f792391d901fdb83df661b0216 (diff) | |
download | elgg-f4171ae7ac428c702a1c23f037fc022cc687bbea.tar.gz elgg-f4171ae7ac428c702a1c23f037fc022cc687bbea.tar.bz2 |
description should be wrapped in <div class="eot-output"> frame
-rw-r--r-- | views/default/object/event_calendar.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/object/event_calendar.php b/views/default/object/event_calendar.php index 5779c004c..17f7ff130 100644 --- a/views/default/object/event_calendar.php +++ b/views/default/object/event_calendar.php @@ -55,9 +55,9 @@ if ($full) { echo $list_body; echo $body; if ($event->long_description) { - echo '<p>'.$event->long_description.'</p>'; + echo '<div class="elgg-output">'.$event->long_description.'</div>'; } else { - echo '<p>'.$event->description.'</p>'; + echo '<div class="elgg-output">'.$event->description.'</div>'; } if ($vars['light_box'] == TRUE) { $event_calendar_add_users = elgg_get_plugin_setting('add_users', 'event_calendar'); @@ -112,4 +112,4 @@ if ($full) { echo elgg_view_image_block($icon, $list_body); } -?>
\ No newline at end of file +?> |