Merge pull request #7641 from annando/update-unsearchable

Update the "unsearchable" field in the "self" contact
2022.09-rc
Hypolite Petovan 2019-09-19 07:09:23 -04:00 zatwierdzone przez GitHub
commit 0c0f3b0fcc
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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;
}