Unifiy the creation of photo links

This commit is contained in:
Michael 2023-05-09 20:44:58 +00:00
parent 4c40bc164d
commit 7d91cc73de
5 changed files with 34 additions and 14 deletions

View file

@ -375,9 +375,7 @@ function photos_post(App $a)
$arr['visible'] = 0;
$arr['origin'] = 1;
$arr['body'] = '[url=' . DI::baseUrl() . '/photos/' . $user['nickname'] . '/image/' . $photo['resource-id'] . ']'
. '[img]' . DI::baseUrl() . '/photo/' . $photo['resource-id'] . '-' . $photo['scale'] . '.'. $ext . '[/img]'
. '[/url]';
$arr['body'] = Images::getImageUrl($photo['resource-id'], $user['nickname'], $photo['scale'], $ext, '');
$item_id = Item::insert($arr);
}