From 52cc8ab73b867b2d920a2ab40a237f9fa166b13f Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 4 Mar 2024 07:30:04 +0000 Subject: [PATCH] Issue 13765: Fixed creation of self user contact for approval --- src/Model/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index e673822ef2..bc235a3e35 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -755,7 +755,7 @@ class Contact $user = DBA::selectFirst( 'user', ['uid', 'username', 'nickname', 'pubkey', 'prvkey'], - ['uid' => $uid, 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false] + ['uid' => $uid, 'account_removed' => false, 'account_expired' => false] ); if (!DBA::isResult($user)) { return false;