From e7ef3b82f0f51d7b3f54e98475b0fe5fc1586c75 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 24 May 2011 20:49:19 -0700 Subject: [PATCH] clearup float, fix icon --- boot.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }}