From: Friendika Date: Wed, 25 May 2011 03:49:19 +0000 (-0700) Subject: clearup float, fix icon X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e7ef3b82f0f51d7b3f54e98475b0fe5fc1586c75;p=friendica.git clearup float, fix icon --- diff --git a/boot.php b/boot.php index b328eec0e6..3f28edc306 100644 --- a/boot.php +++ b/boot.php @@ -2547,6 +2547,7 @@ function prepare_body($item,$attach = false) { return $s; $arr = explode(',',$item['attach']); + $s .= '
'; if(count($arr)) { foreach($arr as $r) { $matches = false; @@ -2559,7 +2560,7 @@ function prepare_body($item,$attach = false) { case 'audio': case 'image': case 'text': - $icon = '
'; + $icon = '
'; break; default: $icon = '
'; @@ -2572,7 +2573,7 @@ function prepare_body($item,$attach = false) { } } } - $s .= '
'; + $s .= '
'; return $s; }}