mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-26 02:58:32 -04:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e80de634d3 | ||
|
|
536f80e50b | ||
|
|
3eeb173efd | ||
|
|
e90fc6d714 |
@@ -1,3 +1,8 @@
|
||||
Hubzilla 10.6.1 (2025-11-21)
|
||||
- Fix insufficient target attribution for forums
|
||||
- Fix reshare regression in forum logic
|
||||
|
||||
|
||||
Hubzilla 10.6 (2025-11-04)
|
||||
Features
|
||||
- Improved background fetching of replies collection
|
||||
|
||||
@@ -637,7 +637,9 @@ class Activity {
|
||||
$ret['tag'] = $t;
|
||||
}
|
||||
|
||||
if (str_contains($i['body'], '[/share]')) {
|
||||
// TODO: Do not replace the if the owner is a forum.
|
||||
// Receivers will not be able to fetch the original in that case.
|
||||
if (str_contains($i['body'], '[/share]') && !$i['owner']['xchan_pubforum']) {
|
||||
preg_match_all('/\[share(.*?)\[\/share\]/ism', $i['body'], $all_shares, PREG_SET_ORDER);
|
||||
|
||||
$quote_urls = [];
|
||||
|
||||
2
boot.php
2
boot.php
@@ -70,7 +70,7 @@ require_once('include/security.php');
|
||||
|
||||
|
||||
define('PLATFORM_NAME', 'hubzilla');
|
||||
define('STD_VERSION', '10.6');
|
||||
define('STD_VERSION', '10.6.1');
|
||||
define('ZOT_REVISION', '6.0');
|
||||
|
||||
define('DB_UPDATE_VERSION', 1264);
|
||||
|
||||
@@ -3414,7 +3414,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $group = false
|
||||
$arr['target'] = [
|
||||
'id' => str_replace('/item/', '/conversation/', $arr['parent_mid']),
|
||||
'type' => 'Collection',
|
||||
'attributedTo' => channel_url($channel['channel_address'])
|
||||
'attributedTo' => channel_url($channel)
|
||||
];
|
||||
|
||||
$arr['term'] = $item['term'];
|
||||
|
||||
Reference in New Issue
Block a user