diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-22 10:52:10 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-22 10:52:10 +0200 |
commit | 6f8d29ad8076fc53019739cdc9afa3d15d250d8e (patch) | |
tree | c426b70647c55eda335239ac31a5c43170d41790 /include/ItemObject.php | |
parent | eb947acebe696eeccd378e1ef1e3bffd6533165c (diff) | |
download | volse-hubzilla-6f8d29ad8076fc53019739cdc9afa3d15d250d8e.tar.gz volse-hubzilla-6f8d29ad8076fc53019739cdc9afa3d15d250d8e.tar.bz2 volse-hubzilla-6f8d29ad8076fc53019739cdc9afa3d15d250d8e.zip |
move photo object stuff from itemObject to prepare_body() so we can do more stuff with it
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index 9fe86118c..c5c2cb2e6 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -278,17 +278,6 @@ class Item extends BaseObject { $children = $this->get_children(); - $is_photo = (($item['obj_type'] == ACTIVITY_OBJ_PHOTO) ? true : false); - if($is_photo) { - $object = json_decode($item['object'],true); - $photo = array( - 'url' => rawurldecode($object['id']) . '?zid=' . $observer['xchan_addr'], - 'link' => rawurldecode(get_rel_link($object['link'],'alternate')) . '?zid=' . $observer['xchan_addr'], - 'width' => $object['width'], - 'height' => $object['height'] - ); - } - $has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false); $tmp_item = array( @@ -342,8 +331,7 @@ class Item extends BaseObject { 'owner_url' => $this->get_owner_url(), 'owner_photo' => $this->get_owner_photo(), 'owner_name' => $this->get_owner_name(), - 'is_photo' => $is_photo, - 'photo' => (($is_photo) ? $photo : ''), + 'photo' => $body['photo'], 'has_tags' => $has_tags, // Item toolbar buttons |