X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcron.php;h=c1e4338d6fe4edece32d3aa0cc5e91c095ea2221;hb=747dc934f73643933fb46a720dd0570069eaf36a;hp=00dd500704a55a327dd9551f8ae9d71289a6e2c4;hpb=dfa5183774e24fe2b1a355c9427372d4cd55ea70;p=friendica.git diff --git a/include/cron.php b/include/cron.php index 00dd500704..c1e4338d6f 100644 --- a/include/cron.php +++ b/include/cron.php @@ -410,6 +410,12 @@ function cron_repair_database() { // There was an issue where the nick vanishes from the contact table q("UPDATE `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` SET `nick` = `nickname` WHERE `self` AND `nick`=''"); + // Update the global contacts for local users + $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`"); + if ($r) + foreach ($r AS $user) + update_gcontact_for_user($user["uid"]); + /// @todo /// - remove thread entries without item /// - remove sign entries without item