diff options
author | friendica <info@friendica.com> | 2014-04-06 18:57:04 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-06 18:57:04 -0700 |
commit | 81ce5f14d2c85fb7c4a19c169acc06fe2424eac8 (patch) | |
tree | 485d2fccbffbcffb43554331b158a8d92899ce3c /mod/viewconnections.php | |
parent | 6f555c50e110235d125645113a58d1a2fda2eee8 (diff) | |
download | volse-hubzilla-81ce5f14d2c85fb7c4a19c169acc06fe2424eac8.tar.gz volse-hubzilla-81ce5f14d2c85fb7c4a19c169acc06fe2424eac8.tar.bz2 volse-hubzilla-81ce5f14d2c85fb7c4a19c169acc06fe2424eac8.zip |
missing pagination on viewconnections page
Diffstat (limited to 'mod/viewconnections.php')
-rw-r--r-- | mod/viewconnections.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mod/viewconnections.php b/mod/viewconnections.php index 84b976042..a9fb967f7 100644 --- a/mod/viewconnections.php +++ b/mod/viewconnections.php @@ -29,6 +29,15 @@ function viewconnections_content(&$a) { } + $r = q("SELECT count(*) as total FROM abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and abook_flags = 0 and not ( xchan_flags & %d ) and not ( xchan_flags & %d ) and not ( xchan_flags & %d ) ", + intval($a->profile['uid']), + intval(XCHAN_FLAGS_HIDDEN), + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_DELETED) + ); + if($r) { + $a->set_pager_total($r[0]['total']); + } $r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and abook_flags = 0 and not ( xchan_flags & %d ) and not ( xchan_flags & %d ) and not ( xchan_flags & %d ) order by xchan_name LIMIT %d , %d ", intval($a->profile['uid']), |