aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-10-25 18:02:45 +0100
committerMario Vavti <mario@mariovavti.com>2015-10-25 18:02:45 +0100
commit4442da306a6a2ac88c6dd0ab10b21616fb66daf0 (patch)
tree8792e01fe5d2132be4cfe868cb2c7141188d3c28 /include
parent9cbca24f7a333187961d35a77e5426dc4f2e122e (diff)
downloadvolse-hubzilla-4442da306a6a2ac88c6dd0ab10b21616fb66daf0.tar.gz
volse-hubzilla-4442da306a6a2ac88c6dd0ab10b21616fb66daf0.tar.bz2
volse-hubzilla-4442da306a6a2ac88c6dd0ab10b21616fb66daf0.zip
hubzilla compatibility: improve photo item object - we now provide the infos for all available photo sizes
Diffstat (limited to 'include')
-rw-r--r--include/text.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 2a8905efe..c3abaeedf 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1449,7 +1449,8 @@ function prepare_body(&$item,$attach = false) {
$is_photo = (($item['obj_type'] === ACTIVITY_OBJ_PHOTO) ? true : false);
if($is_photo) {
$object = json_decode($item['object'],true);
- $s = '<a href="' . zid(rawurldecode(get_rel_link($object['link'],'alternate'))) . '"><img style="max-width:' . $object['width'] . 'px; width:100%; height:auto;" src="'. zid(rawurldecode($object['id'])) . '"></a>';
+ $scale = ((($object['link'][1]['width'] == 1024) || ($object['link'][1]['height'] == 1024)) ? 1 : 0);
+ $s = '<div class="inline-photo-item-wrapper"><a href="' . zid(rawurldecode($object['id'])) . '"><img class="inline-photo-item" style="max-width:' . $object['link'][$scale]['width'] . 'px; width:100%; height:auto;" src="' . zid(rawurldecode($object['link'][$scale]['href'])) . '"></a></div>';
}
$s .= prepare_text($item['body'],$item['mimetype']);