From: Steffen K9 Date: Tue, 4 Feb 2020 06:13:29 +0000 (+0100) Subject: Remove join profile table X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=52789f3ae4a07b79fabc99ab01386617fa75183f;p=friendica.git Remove join profile table Remove join profile table and remove exclude forums --- diff --git a/src/Model/User.php b/src/Model/User.php index 0681e13d7e..24daf9a01e 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -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)) {