mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
fix regression in relation with recent photo changes
This commit is contained in:
@@ -668,8 +668,8 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) {
|
||||
$def_extension = '.jpg';
|
||||
if($gis[2] === IMAGETYPE_PNG)
|
||||
$def_extension = '.png';
|
||||
if($gis[2] === IMAGETYPE_WEBP)
|
||||
$def_extension = '.webp';
|
||||
if($gis[2] === IMAGETYPE_WEBP)
|
||||
$def_extension = '.webp';
|
||||
}
|
||||
|
||||
// If we know it's a photo, over-ride the type in case the source system could not determine what it was
|
||||
|
||||
@@ -259,7 +259,7 @@ function photo_upload($channel, $observer, $args) {
|
||||
if($args['description'])
|
||||
$p['description'] = $args['description'];
|
||||
|
||||
$link = array();
|
||||
$url = [];
|
||||
|
||||
$r0 = $ph->save($p);
|
||||
$url[0] = array(
|
||||
@@ -360,14 +360,14 @@ function photo_upload($channel, $observer, $args) {
|
||||
|
||||
if($large_photos) {
|
||||
$scale = 1;
|
||||
$width = $link[1]['width'];
|
||||
$height = $link[1]['height'];
|
||||
$width = $url[1]['width'];
|
||||
$height = $url[1]['height'];
|
||||
$tag = (($r1) ? '[zmg=' . $width . 'x' . $height . ']' : '[zmg]');
|
||||
}
|
||||
else {
|
||||
$scale = 2;
|
||||
$width = $link[2]['width'];
|
||||
$height = $link[2]['height'];
|
||||
$width = $url[2]['width'];
|
||||
$height = $url[2]['height'];
|
||||
$tag = (($r2) ? '[zmg=' . $width . 'x' . $height . ']' : '[zmg]');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user