]> git.mxchange.org Git - friendica.git/commitdiff
Pending contacts shouldn't be displayed in the sidebar
authorMichael <heluecht@pirati.ca>
Tue, 29 Nov 2016 06:40:35 +0000 (06:40 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 29 Nov 2016 06:40:35 +0000 (06:40 +0000)
include/identity.php
include/text.php

index 133a12a13f58e80df6945021960dc55728dee0c4..288f93aaf97e0aa54875a9b73977a89e063d9e2f 100644 (file)
@@ -371,7 +371,7 @@ function profile_sidebar($profile, $block = 0) {
                        if(count($r))
                                $updated =  date("c", strtotime($r[0]['updated']));
 
-                       $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND NOT `self` AND (NOT `blocked` OR `pending`) AND NOT `hidden` AND NOT `archive`
+                       $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
                                        AND `network` IN ('%s', '%s', '%s', '')",
                                intval($profile['uid']),
                                dbesc(NETWORK_DFRN),
index 154e4e235fa8a824b79a75500f2da308518d5659..b57016456a8c366485035527f635a81906059d6b 100644 (file)
@@ -12,7 +12,7 @@ if(! function_exists('replace_macros')) {
  * This is our template processor
  *
  * @param string|FriendicaSmarty $s the string requiring macro substitution,
- *                                                                     or an instance of FriendicaSmarty
+ *                             or an instance of FriendicaSmarty
  * @param array $r key value pairs (search => replace)
  * @return string substituted string
  */
@@ -874,7 +874,7 @@ function contact_block() {
        if((! is_array($a->profile)) || ($a->profile['hide-friends']))
                return $o;
        $r = q("SELECT COUNT(*) AS `total` FROM `contact`
-                       WHERE `uid` = %d AND NOT `self` AND (NOT `blocked` OR `pending`)
+                       WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
                                AND NOT `hidden` AND NOT `archive`
                                AND `network` IN ('%s', '%s', '%s')",
                        intval($a->profile['uid']),
@@ -892,7 +892,7 @@ function contact_block() {
        } else {
                // Splitting the query in two parts makes it much faster
                $r = q("SELECT `id` FROM `contact`
-                               WHERE `uid` = %d AND NOT `self` AND (NOT `blocked` OR `pending`)
+                               WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
                                        AND NOT `hidden` AND NOT `archive`
                                AND `network` IN ('%s', '%s', '%s') ORDER BY RAND() LIMIT %d",
                                intval($a->profile['uid']),