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

Este commit está contenido en:
Michael 2019-09-19 03:54:54 +00:00
padre 89e1fee01e
commit 0d32a8674b
Se han modificado 2 ficheros con 13 adiciones y 1 borrados

Ver fichero

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

Ver fichero

@ -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;
}