mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
make sure we select only sys channel items and remove dupes checking (this will be checked in item_store() anyway)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user