X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=14219bcdcb3b7280d8c18159a25ab0e4da3785b2;hb=3a0c18713e5c83824a410547c6c7fd804220f1d1;hp=672c11a4f49097342f8a3d78fd16074ab6ce7ad7;hpb=3de3d867a5102fee8c8f73169ddaea8c9322a9db;p=friendica.git diff --git a/update.php b/update.php index 672c11a4f4..14219bcdcb 100644 --- a/update.php +++ b/update.php @@ -79,7 +79,7 @@ function update_1298() $a = new \stdClass(); $a->strings = []; - // First we get the the localizations + // First we get the localizations if (file_exists('view/lang/$lang/strings.php')) { include 'view/lang/$lang/strings.php'; } @@ -1315,3 +1315,21 @@ function update_1516() return Update::SUCCESS; } + +function update_1518() +{ + $users = DBA::select('user', ['uid']); + while ($user = DBA::fetch($users)) { + Contact::updateSelfFromUserID($user['uid']); + } + DBA::close($users); + + return Update::SUCCESS; +} + +function update_1520(): int +{ + DBA::update('user', ['parent-uid' => null], ['parent-uid' => 0]); + + return Update::SUCCESS; +}