Only show the attachment elements if there are one.

This commit is contained in:
Michael 2017-07-17 19:49:58 +00:00
parent 1c8e74edce
commit a5baba84af
1 changed files with 3 additions and 3 deletions

View File

@ -1374,7 +1374,6 @@ function prepare_body(&$item, $attach = false, $preview = false) {
$vhead = false;
$arr = explode('[/attach],', $item['attach']);
if (count($arr)) {
$as .= '<div class="body-attach">';
foreach ($arr as $r) {
$matches = false;
$icon = '';
@ -1434,9 +1433,10 @@ function prepare_body(&$item, $attach = false, $preview = false) {
}
}
}
$as .= '<div class="clear"></div></div>';
}
$s = $s . $as;
if ($as != '') {
$s .= '<div class="body-attach">'.$as.'<div class="clear"></div></div>';
}
// map
if (strpos($s, '<div class="map">') !== false && x($item, 'coord')) {