diff options
author | Mario <mario@mariovavti.com> | 2022-05-23 18:56:09 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-05-23 18:56:09 +0000 |
commit | e146a67f4b34a067229f008e9f6ddff95da18e67 (patch) | |
tree | a9291e6e75eb99b59d9ff48f64eaec0df01da45c /include/photos.php | |
parent | 162d86983a86b9dd3a1af6a10d260658021a1e35 (diff) | |
download | volse-hubzilla-e146a67f4b34a067229f008e9f6ddff95da18e67.tar.gz volse-hubzilla-e146a67f4b34a067229f008e9f6ddff95da18e67.tar.bz2 volse-hubzilla-e146a67f4b34a067229f008e9f6ddff95da18e67.zip |
fix photo permission if a photo description is available and use the filename as default photo description if uploading via the editor
Diffstat (limited to 'include/photos.php')
-rw-r--r-- | include/photos.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/photos.php b/include/photos.php index 5bceb516d..9e4e8923d 100644 --- a/include/photos.php +++ b/include/photos.php @@ -359,13 +359,13 @@ function photo_upload($channel, $observer, $args) { $scale = 1; $width = $url[1]['width']; $height = $url[1]['height']; - $tag = (($r1) ? '[zmg=' . $width . 'x' . $height . ']' : '[zmg]'); + $tag = (($r1) ? '[zmg=' . $url[1]['href'] . ']' : '[zmg]'); } else { $scale = 2; $width = $url[2]['width']; $height = $url[2]['height']; - $tag = (($r2) ? '[zmg=' . $width . 'x' . $height . ']' : '[zmg]'); + $tag = (($r2) ? '[zmg=' .$url[2]['href'] . ']' : '[zmg]'); } $author_link = '[zrl=' . z_root() . '/channel/' . $channel['channel_address'] . ']' . $channel['channel_name'] . '[/zrl]'; @@ -379,7 +379,7 @@ function photo_upload($channel, $observer, $args) { $summary = (($args['body']) ? $args['body'] : '') . '[footer]' . $activity_format . '[/footer]'; $obj_body = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']' - . $tag . z_root() . "/photo/{$photo_hash}-{$scale}." . $ph->getExt() . '[/zmg]' + . $tag . $filename . '[/zmg]' . '[/zrl]'; $url[] = [ |