Merge branch 'dev' into 'dev'
minor zot6 compatibility issues uncovered through daily use See merge request hubzilla/core!1671
This commit is contained in:
commit
fc2a038ee1
@ -151,7 +151,6 @@ class Activity {
|
||||
|
||||
static function fetch_image($x) {
|
||||
|
||||
|
||||
$ret = [
|
||||
'type' => 'Image',
|
||||
'id' => $x['id'],
|
||||
|
@ -96,11 +96,12 @@ class Item extends Controller {
|
||||
}
|
||||
|
||||
// if we don't have a parent id belonging to the signer see if we can obtain one as a visitor that we have permission to access
|
||||
// with a bias towards those items owned by channels on this site (item_wall = 1)
|
||||
|
||||
$sql_extra = item_permissions_sql(0);
|
||||
|
||||
if (! $i) {
|
||||
$i = q("select id as item_id from item where mid = '%s' $item_normal $sql_extra limit 1",
|
||||
$i = q("select id as item_id from item where mid = '%s' $item_normal $sql_extra order by item_wall desc limit 1",
|
||||
dbesc($r[0]['parent_mid'])
|
||||
);
|
||||
}
|
||||
|
@ -390,7 +390,7 @@ function photo_upload($channel, $observer, $args) {
|
||||
'edited' => $p['edited'],
|
||||
'id' => z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash,
|
||||
'link' => $link,
|
||||
'body' => $obj_body
|
||||
'body' => $summary
|
||||
);
|
||||
|
||||
$target = array(
|
||||
|
Reference in New Issue
Block a user