Merge pull request #7641 from annando/update-unsearchable

Update the "unsearchable" field in the "self" contact
This commit is contained in:
Hypolite Petovan
2019-09-19 07:09:23 -04:00
committed by GitHub
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -34,7 +34,7 @@
use Friendica\Database\DBA;
if (!defined('DB_UPDATE_VERSION')) {
define('DB_UPDATE_VERSION', 1322);
define('DB_UPDATE_VERSION', 1323);
}
return [
+12
View File
@@ -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;
}