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;
}}