]> git.mxchange.org Git - friendica.git/commitdiff
Update src/Model/Profile.php
authorMichael Vogel <icarus@dabo.de>
Sat, 25 Apr 2020 21:33:11 +0000 (23:33 +0200)
committerGitHub <noreply@github.com>
Sat, 25 Apr 2020 21:33:11 +0000 (23:33 +0200)
Co-Authored-By: Hypolite Petovan <hypolite@mrpetovan.com>
src/Model/Profile.php

index dc7e02642ad3d1cb630ef0774252b7b691f6ec3a..d83402410387a22ca415b3ec14fdd40be95eac25 100644 (file)
@@ -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
+                               );
                        }
                }