]> git.mxchange.org Git - friendica.git/commitdiff
Only show the attachment elements if there are one.
authorMichael <heluecht@pirati.ca>
Mon, 17 Jul 2017 19:49:58 +0000 (19:49 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 17 Jul 2017 19:49:58 +0000 (19:49 +0000)
include/text.php

index 83588731fc3529e98369c9621eac10b0d7be072a..71a2564405714659f472904c2f1cf1850edd13c4 100644 (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')) {