From: Jonny Tischbein Date: Sat, 17 Nov 2018 18:14:59 +0000 (+0100) Subject: Fix setting permisson as post for uploaded photo in album via modal create post X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7c690c93bba85e03c4412030f330fcf657ed27a2;p=friendica.git Fix setting permisson as post for uploaded photo in album via modal create post --- diff --git a/mod/item.php b/mod/item.php index 507185e7c2..5f9173fab8 100644 --- a/mod/item.php +++ b/mod/item.php @@ -468,7 +468,7 @@ function item_post(App $a) { $fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny]; - $condition = ['resource-id' => $image_uri, 'uid' => $profile_uid, 'album' => L10n::t('Wall Photos')]; + $condition = ['resource-id' => $image_uri, 'uid' => $profile_uid]; DBA::update('photo', $fields, $condition); } }