if ($simple) {
$o = "<h3>" . BBCode::convert($ev['summary']) . "</h3>";
- $o .= "<div>" . BBCode::convert($ev['desc']) . "</div>";
+ $o .= "<p>" . BBCode::convert($ev['desc']) . "</p>";
$o .= "<h4>" . L10n::t('Starts:') . "</h4><p>" . $event_start . "</p>";
}
if (strlen($ev['location'])) {
- $o .= "<h4>" . L10n::t('Location:') . "</h4><p>" . $ev['location'] . "</p>";
+ $o .= "<h4>" . L10n::t('Location:') . "</h4><p>" . BBCode::convert($ev['location']) . "</p>";
}
return $o;
$text = preg_replace_callback(
"/\[map\](.*?)\[\/map\]/ism",
function ($match) {
- // the extra space in the following line is intentional
- // Whyyy? - @MrPetovan
- return str_replace($match[0], '<div class="map" >' . Map::byLocation($match[1]) . '</div>', $match[0]);
+ return str_replace($match[0], '<p class="map">' . Map::byLocation($match[1]) . '</p>', $match[0]);
},
$text
);
$text = preg_replace_callback(
"/\[map=(.*?)\]/ism",
function ($match) {
- // the extra space in the following line is intentional
- // Whyyy? - @MrPetovan
- return str_replace($match[0], '<div class="map" >' . Map::byCoordinates(str_replace('/', ' ', $match[1])) . '</div>', $match[0]);
+ return str_replace($match[0], '<p class="map">' . Map::byCoordinates(str_replace('/', ' ', $match[1])) . '</p>', $match[0]);
},
$text
);