diff options
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 29be4931d..dd52b16b6 100644 --- a/include/text.php +++ b/include/text.php @@ -1602,7 +1602,7 @@ function create_export_photo_body(&$item) { if(($item['verb'] === ACTIVITY_POST) && ($item['obj_type'] === ACTIVITY_OBJ_PHOTO)) { $j = json_decode($item['object'],true); if($j) { - $item['body'] .= (($j['body']) ? $j['body'] : $j['bbcode']); + $item['body'] .= "\n\n" . (($j['body']) ? $j['body'] : $j['bbcode']); $item['sig'] = ''; } } |