mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Added update for post-thread-user
This commit is contained in:
parent
f1377ce7fb
commit
badb73d0cb
1 changed files with 2 additions and 0 deletions
|
@ -247,6 +247,7 @@ class Item
|
||||||
while ($item = Post::fetch($items)) {
|
while ($item = Post::fetch($items)) {
|
||||||
if (in_array($item['uid'], [$uid, 0])) {
|
if (in_array($item['uid'], [$uid, 0])) {
|
||||||
Post\User::update($item['uri-id'], $uid, ['hidden' => true], true);
|
Post\User::update($item['uri-id'], $uid, ['hidden' => true], true);
|
||||||
|
Post\ThreadUser::update($item['uri-id'], $uid, ['hidden' => true], true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($item['uid'] == $uid) {
|
if ($item['uid'] == $uid) {
|
||||||
|
@ -353,6 +354,7 @@ class Item
|
||||||
}
|
}
|
||||||
} elseif ($item['uid'] != 0) {
|
} elseif ($item['uid'] != 0) {
|
||||||
Post\User::update($item['uri-id'], $item['uid'], ['hidden' => true]);
|
Post\User::update($item['uri-id'], $item['uid'], ['hidden' => true]);
|
||||||
|
Post\ThreadUser::update($item['uri-id'], $item['uid'], ['hidden' => true]);
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger::info('Item has been marked for deletion.', ['id' => $item_id]);
|
Logger::info('Item has been marked for deletion.', ['id' => $item_id]);
|
||||||
|
|
Loading…
Reference in a new issue