From: Friendika Date: Sat, 6 Nov 2010 23:34:26 +0000 (-0700) Subject: don't show blocked/pending contacts X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=be203d592d6aca02359ef4714fb9c9ce8a617bad;p=friendica.git don't show blocked/pending contacts --- diff --git a/boot.php b/boot.php index 3fdc971b2e..cdca1c11e4 100644 --- a/boot.php +++ b/boot.php @@ -1400,7 +1400,7 @@ function contact_block() { $o .= '

' . t('No contacts') . '

'; return $o; } - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 ORDER BY RAND() LIMIT 24", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 ORDER BY RAND() LIMIT 24", intval($a->profile['uid']) ); if(count($r)) {