From 6c156e3bc6eaaffd51ccc894fd8874da138f97d1 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 9 Feb 2022 07:02:06 +0000 Subject: [PATCH] Set "manually-approve" in the update --- update.php | 1 + 1 file changed, 1 insertion(+) diff --git a/update.php b/update.php index 6e9c294c1f..016fe8a2ec 100644 --- a/update.php +++ b/update.php @@ -1093,6 +1093,7 @@ function update_1451() { DBA::update('user', ['account-type' => User::ACCOUNT_TYPE_COMMUNITY], ['page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]]); DBA::update('contact', ['contact-type' => Contact::TYPE_COMMUNITY], ["`forum` OR `prv`"]); + DBA::update('contact', ['manually-approve' => true], ['prv' => true]); return Update::SUCCESS; }