aboutsummaryrefslogtreecommitdiffstats
path: root/mod/connections.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-04 03:11:28 -0700
committerfriendica <info@friendica.com>2014-05-04 03:11:28 -0700
commit3da4656e412730706b8e0be44dc0a751d38fdee6 (patch)
tree44ea77fe276682640bdb6ec822a10ec76ce1d357 /mod/connections.php
parent6771aaec901e02a4fa0817ade01171477b79ed5e (diff)
downloadvolse-hubzilla-3da4656e412730706b8e0be44dc0a751d38fdee6.tar.gz
volse-hubzilla-3da4656e412730706b8e0be44dc0a751d38fdee6.tar.bz2
volse-hubzilla-3da4656e412730706b8e0be44dc0a751d38fdee6.zip
hopefully this will fix it
Diffstat (limited to 'mod/connections.php')
-rw-r--r--mod/connections.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/connections.php b/mod/connections.php
index e2d467c60..b9605da01 100644
--- a/mod/connections.php
+++ b/mod/connections.php
@@ -213,10 +213,10 @@ function connections_content(&$a) {
nav_set_selected('intros');
break;
case 'ifpending':
- $r = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and not (abook_flags & %d) and (abook_flags & %d) and not (xchan_flags & %d )",
+ $r = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and (abook_flags & %d) and not (abook_flags & %d) and not (xchan_flags & %d )",
intval(local_user()),
- intval(ABOOK_FLAG_SELF|ABOOK_FLAG_PENDING|ABOOK_FLAG_IGNORED),
intval(ABOOK_FLAG_PENDING),
+ intval(ABOOK_FLAG_SELF|ABOOK_FLAG_IGNORED),
intval(XCHAN_FLAGS_DELETED|XCHAN_FLAGS_ORPHAN)
);
if($r && $r[0]['total']) {