Moved user block

This commit is contained in:
Michael 2019-07-31 16:09:03 +00:00
parent c936232575
commit 88aa777410
1 changed files with 3 additions and 3 deletions

View File

@ -1875,11 +1875,11 @@ class Item extends BaseObject
DBA::insert('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $diaspora_signed_text], true);
}
// Get the user information
$user = User::getById($uid);
// In that function we check if this is a forum post. Additionally we delete the item under certain circumstances
if (self::tagDeliver($item['uid'], $current_post)) {
// Get the user information for the logging
$user = User::getById($uid);
Logger::notice('Item had been deleted', ['id' => $current_post, 'user' => $uid, 'account-type' => $user['account-type']]);
return 0;
}