mirror of
https://github.com/friendica/friendica
synced 2025-04-19 10:30:10 +00:00
The query condition for active users are unified
This commit is contained in:
parent
692a633dc8
commit
7e73283949
19 changed files with 33 additions and 37 deletions
|
@ -60,7 +60,7 @@ class OpenID extends BaseModule
|
|||
// in commit 8367cadeeffec4b6792a502847304b17ceba5882, so it might
|
||||
// have left mixed records in the user table
|
||||
//
|
||||
$condition = ['blocked' => false, 'account_expired' => false, 'account_removed' => false, 'verified' => true,
|
||||
$condition = ['verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false,
|
||||
'openid' => [$authId, Strings::normaliseOpenID($authId)]];
|
||||
|
||||
$dba = DI::dba();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue