diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-10-23 14:56:41 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-10-23 14:56:41 +0200 |
commit | 8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1 (patch) | |
tree | 2f95124f88bcd7d568f86d53f420190ae56e2178 /include/items.php | |
parent | e2ae8f0c4d83060b2606f03b1c86d040c3161f18 (diff) | |
parent | e530476e6c5d2319f3a0a09dfe73ec181e923325 (diff) | |
download | volse-hubzilla-8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1.tar.gz volse-hubzilla-8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1.tar.bz2 volse-hubzilla-8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1.zip |
Merge branch 'dev' into make-db-upgrade-static-method
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/include/items.php b/include/items.php index 876c20099..423d626ad 100644 --- a/include/items.php +++ b/include/items.php @@ -5112,25 +5112,19 @@ function copy_of_pubitem($channel,$mid) { return $item[0]; } - - $r = q("select * from item where parent_mid = (select parent_mid from item where mid = '%s' and uid = %d ) order by id ", + $r = q("select * from item where parent_mid = (select parent_mid from item where mid = '%s' and uid = %d) and uid = %d order by id ", dbesc($mid), + intval($syschan['channel_id']), intval($syschan['channel_id']) ); if($r) { $items = fetch_post_tags($r,true); foreach($items as $rv) { - $d = q("select id from item where mid = '%s' and uid = %d limit 1", - dbesc($rv['mid']), - intval($channel['channel_id']) - ); - if($d) { - continue; - } unset($rv['id']); unset($rv['parent']); + $rv['aid'] = $channel['channel_account_id']; $rv['uid'] = $channel['channel_id']; $rv['item_wall'] = 0; @@ -5143,5 +5137,6 @@ function copy_of_pubitem($channel,$mid) { } } + return $result; } |