From 59da3dfe030493dcb8511cc3c06d672d61e5ea48 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 28 Oct 2015 15:03:34 +0100 Subject: do not treat profile photo change posts like photo-items --- include/text.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/text.php b/include/text.php index c3abaeedf..e0c8d018e 100644 --- a/include/text.php +++ b/include/text.php @@ -1446,11 +1446,15 @@ function prepare_body(&$item,$attach = false) { unobscure($item); + $s = ''; + $is_photo = (($item['obj_type'] === ACTIVITY_OBJ_PHOTO) ? true : false); if($is_photo) { $object = json_decode($item['object'],true); - $scale = ((($object['link'][1]['width'] == 1024) || ($object['link'][1]['height'] == 1024)) ? 1 : 0); - $s = '
'; + if($object['link'][0]['width']) { + $scale = ((($object['link'][1]['width'] == 1024) || ($object['link'][1]['height'] == 1024)) ? 1 : 0); + $s = '
'; + } } $s .= prepare_text($item['body'],$item['mimetype']); -- cgit v1.2.3