aboutsummaryrefslogtreecommitdiffstats
path: root/include/photos.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2014-03-25 04:24:26 +0000
committerThomas Willingham <founder@kakste.com>2014-03-25 04:24:26 +0000
commitf5467a6d511c2fbf2ba88e026f75e8a304a9ab2d (patch)
tree77ab10442b31fd91ede8c72d45d4326d6734c85a /include/photos.php
parent50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c (diff)
downloadvolse-hubzilla-f5467a6d511c2fbf2ba88e026f75e8a304a9ab2d.tar.gz
volse-hubzilla-f5467a6d511c2fbf2ba88e026f75e8a304a9ab2d.tar.bz2
volse-hubzilla-f5467a6d511c2fbf2ba88e026f75e8a304a9ab2d.zip
Fix wall photo uploads.
Diffstat (limited to 'include/photos.php')
-rw-r--r--include/photos.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/photos.php b/include/photos.php
index c0243cc15..f9f160eb5 100644
--- a/include/photos.php
+++ b/include/photos.php
@@ -221,9 +221,13 @@ function photo_upload($channel, $observer, $args) {
$arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $arr['mid'];
+ if ($width_x_height)
+ $tag = '[zmg=' . $width_x_height. ']';
+ else
+ $tag = '[zmg]';
$arr['body'] = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']'
- . '[zmg=' . $width_x_height. ']' . z_root() . "/photo/{$photo_hash}-{$smallest}.".$ph->getExt() . '[/zmg]'
+ . $tag . z_root() . "/photo/{$photo_hash}-{$smallest}.".$ph->getExt() . '[/zmg]'
. '[/zrl]';
$result = item_store($arr);