Update the "unsearchable" field in the "self" contact

This commit is contained in:
Michael 2019-09-19 03:54:54 +00:00
rodzic 89e1fee01e
commit 0d32a8674b
2 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

@ -34,7 +34,7 @@
use Friendica\Database\DBA;
if (!defined('DB_UPDATE_VERSION')) {
define('DB_UPDATE_VERSION', 1322);
define('DB_UPDATE_VERSION', 1323);
}
return [

Wyświetl plik

@ -384,3 +384,15 @@ function update_1318()
Worker::add(PRIORITY_LOW, 'ProfileUpdate');
return Update::SUCCESS;
}
function update_1323()
{
$users = DBA::select('user', ['uid']);
while ($user = DBA::fetch($users)) {
Contact::updateSelfFromUserID($user['uid']);
}
DBA::close($users);
return Update::SUCCESS;
}