From: Michael Vogel Date: Sat, 25 Apr 2020 21:33:11 +0000 (+0200) Subject: Update src/Model/Profile.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=37b9031a27e0627a942d6a73a075418ca086b755;p=friendica.git Update src/Model/Profile.php Co-Authored-By: Hypolite Petovan --- diff --git a/src/Model/Profile.php b/src/Model/Profile.php index dc7e02642a..d834024103 100644 --- a/src/Model/Profile.php +++ b/src/Model/Profile.php @@ -936,7 +936,13 @@ class Profile ); } else { $profiles = DBA::p("SELECT * FROM `owner-view` - WHERE $publish AND NOT `blocked` AND NOT `account_removed` $order LIMIT ?,?", $start, $count); + WHERE NOT `blocked` AND NOT `account_removed` + $publish + $order + LIMIT ?, ?", + $start, + $count + ); } }