use Friendica\Database\DBA;
if (!defined('DB_UPDATE_VERSION')) {
- define('DB_UPDATE_VERSION', 1326);
+ define('DB_UPDATE_VERSION', 1327);
}
return [
return Update::SUCCESS;
}
+function update_1327()
+{
+ $contacts = DBA::select('contact', ['uid', 'id', 'blocked', 'readonly'], ["`uid` != ? AND (`blocked` OR `readonly`) AND NOT `pending`", 0]);
+ while ($contact = DBA::fetch($contacts)) {
+ Contact::setBlockedForUser($contact['id'], $contact['uid'], $contact['blocked']);
+ Contact::setIgnoredForUser($contact['id'], $contact['uid'], $contact['readonly']);
+ }
+ DBA::close($contacts);
+
+ return Update::SUCCESS;
+}
+