diff options
author | Mario <mario@mariovavti.com> | 2020-10-09 12:16:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-09 12:16:55 +0000 |
commit | 1215618589636fd433d69fa5d81f2aca264beef5 (patch) | |
tree | d2416deaa8c2d10f437b786569873f3ba72aad5c /include | |
parent | 67533ee47871df2871fb1e2bf58101e278f791d6 (diff) | |
download | volse-hubzilla-1215618589636fd433d69fa5d81f2aca264beef5.tar.gz volse-hubzilla-1215618589636fd433d69fa5d81f2aca264beef5.tar.bz2 volse-hubzilla-1215618589636fd433d69fa5d81f2aca264beef5.zip |
add zot6 to the authenticatable options and fix array key in reshare header
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 0cfa2a340..960aa3580 100755 --- a/include/items.php +++ b/include/items.php @@ -3175,6 +3175,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $group = false // This MAY cause you to run afoul of copyright law. $rewrite_author = intval(get_abconfig($channel['channel_id'],$item['owner_xchan'],'system','rself')); + if($rewrite_author) { $item['author_xchan'] = $channel['channel_hash']; @@ -3246,7 +3247,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $group = false "' portable_id='" . $item['author']['xchan_hash'] . "' avatar='" . $item['author']['xchan_photo_s'] . "' link='" . $item['plink'] . - "' auth='" . ((in_array($item['author']['network'], ['zot','zot6'])) ? 'true' : 'false') . + "' auth='" . ((in_array($item['author']['xchan_network'], ['zot6','zot'])) ? 'true' : 'false') . "' posted='" . $item['created'] . "' message_id='" . $item['mid'] . "']"; |