Partially revert changes for the RC

This commit is contained in:
Michael 2022-01-09 15:45:14 +00:00
commit bb349a7db4
5 changed files with 33 additions and 28 deletions

View file

@ -1087,16 +1087,3 @@ function update_1446()
return Update::SUCCESS;
}
function update_1449()
{
$users = DBA::select('user', ['uid']);
while ($user = DBA::fetch($users)) {
if (Contact::updateSelfFromUserID($user['uid'])) {
Profile::publishUpdate($user['uid']);
}
}
DBA::close($users);
return Update::SUCCESS;
}