aboutsummaryrefslogtreecommitdiffstats
path: root/include/bb2diaspora.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-10-25 18:01:44 +0100
committerMario Vavti <mario@mariovavti.com>2015-10-25 18:01:44 +0100
commit911fd6c654435e60167007fd95a4e8ace50806e8 (patch)
treec048730dc4668c75d35a9c8a6a6427812b078cc2 /include/bb2diaspora.php
parent123fe58c26ed29a6c75357a1ced004c1d4263d04 (diff)
downloadvolse-hubzilla-911fd6c654435e60167007fd95a4e8ace50806e8.tar.gz
volse-hubzilla-911fd6c654435e60167007fd95a4e8ace50806e8.tar.bz2
volse-hubzilla-911fd6c654435e60167007fd95a4e8ace50806e8.zip
improve photo item object - we now provide the infos for all available photo sizes
Diffstat (limited to 'include/bb2diaspora.php')
-rw-r--r--include/bb2diaspora.php13
1 files changed, 4 insertions, 9 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php
index 95de43ec3..d10ed57eb 100644
--- a/include/bb2diaspora.php
+++ b/include/bb2diaspora.php
@@ -309,15 +309,10 @@ function bb2diaspora_itembody($item, $force_update = false) {
$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']),
- 'link' => rawurldecode(get_rel_link($object['link'],'alternate')),
- 'width' => $object['width'],
- 'height' => $object['height']
- );
-
- $photo_bb = '[zrl=' . $photo['link'] . ']' . '[zmg=' . $photo['width'] . 'x' . $photo['height'] . ']' . $photo['url'] . '[/zmg]' . '[/zrl]';
- $item['body'] = (($item['body']) ? $photo_bb . $item['body'] : $photo_bb);
+ if($object['link'][2]) {
+ $photo_bb = '[zrl=' . rawurldecode($object['id']) . ']' . '[zmg=' . $object['link'][2]['width'] . 'x' . $object['link'][2]['height'] . ']' . rawurldecode($object['link'][2]['href']) . '[/zmg]' . '[/zrl]';
+ $item['body'] = (($item['body']) ? $photo_bb . $item['body'] : $photo_bb);
+ }
}
if(($item['diaspora_meta']) && (! $force_update)) {