Remove join profile table

Remove join profile table and remove exclude forums
This commit is contained in:
Steffen K9 2020-02-04 07:13:29 +01:00 committed by GitHub
parent 9424ecc5bc
commit 52789f3ae4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -1111,16 +1111,13 @@ class User
$userStmt = DBA::p("SELECT `user`.`uid`, `user`.`login_date`, `contact`.`last-item`
FROM `user`
INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid`
INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
WHERE `user`.`verified`
AND `user`.`login_date` > ?
AND `user`.`account-type` != ?
AND NOT `user`.`blocked`
AND NOT `user`.`account_removed`
AND NOT `user`.`account_expired`",
DBA::NULL_DATETIME,
self::ACCOUNT_TYPE_COMMUNITY
DBA::NULL_DATETIME
);
if (!DBA::isResult($userStmt)) {