]> git.mxchange.org Git - friendica.git/commitdiff
Fix SQL error
authorMichael <heluecht@pirati.ca>
Mon, 3 Aug 2020 18:29:11 +0000 (18:29 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 3 Aug 2020 18:29:11 +0000 (18:29 +0000)
mod/poco.php

index 41a1627271d617aa3ba75c1750309dd3e5b064f0..bfa4957f1435329255fbbc73bcf026a70bef3096 100644 (file)
@@ -128,7 +128,7 @@ function poco_init(App $a) {
                $contacts = DBA::selectToArray('owner-view', [], ['net-publish' => true], ['limit' => [$startIndex, $itemsPerPage]]);
        } else {
                Logger::log("Start query for user " . $user['nickname'], Logger::DEBUG);
-               $contacts = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `hiddden` AND NOT `archive`
+               $contacts = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `hidden` AND NOT `archive`
                        AND NOT `failed` AND NOT `unsearchable`
                        AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra LIMIT %d, %d",
                        intval($user['uid']),