]> git.mxchange.org Git - friendica.git/commitdiff
poco - ignore archived contacts
authorfriendica <info@friendica.com>
Tue, 30 Oct 2012 21:25:33 +0000 (14:25 -0700)
committerfriendica <info@friendica.com>
Tue, 30 Oct 2012 21:25:33 +0000 (14:25 -0700)
mod/poco.php

index acfa3ffaa98e46c637fffdf4c96e5463b5a88cdb..cb9abb340ddb06fe071e32f06fc9de4cb85f4e68 100644 (file)
@@ -56,7 +56,7 @@ function poco_init(&$a) {
                        and uid in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = 1) ");
        }
        else {
-               $r = q("SELECT count(*) as `total` from `contact` where `uid` = %d and blocked = 0 and pending = 0 and hidden = 0
+               $r = q("SELECT count(*) as `total` from `contact` where `uid` = %d and blocked = 0 and pending = 0 and hidden = 0 and archive = 0
                        $sql_extra ",
                        intval($user['uid'])
                );
@@ -81,7 +81,7 @@ function poco_init(&$a) {
        }
        else {
 
-               $r = q("SELECT * from `contact` where `uid` = %d and blocked = 0 and pending = 0 and hidden = 0
+               $r = q("SELECT * from `contact` where `uid` = %d and blocked = 0 and pending = 0 and hidden = 0 and archive = 0
                        $sql_extra LIMIT %d, %d",
                        intval($user['uid']),
                        intval($startIndex),