aboutsummaryrefslogtreecommitdiffstats
path: root/mod/contacts.php
diff options
context:
space:
mode:
authorMichael Vogel <icarus@dabo.de>2012-03-11 20:22:28 +0100
committerMichael Vogel <icarus@dabo.de>2012-03-11 20:22:28 +0100
commitd653e27e2dfc172fd66a0987312952d736aca3e7 (patch)
treee0725ca5cf27fc4400a7566eebc0721528d69fd4 /mod/contacts.php
parentebdf4842184cc8d0576abe99b29650c6b6512167 (diff)
parent1dad15a021cc5d03f4238ab77ff051fc0ca1e35e (diff)
downloadvolse-hubzilla-d653e27e2dfc172fd66a0987312952d736aca3e7.tar.gz
volse-hubzilla-d653e27e2dfc172fd66a0987312952d736aca3e7.tar.bz2
volse-hubzilla-d653e27e2dfc172fd66a0987312952d736aca3e7.zip
Merge commit 'upstream/master'
Conflicts: view/theme/diabook/wall_item.tpl view/theme/diabook/wallwall_item.tpl
Diffstat (limited to 'mod/contacts.php')
-rwxr-xr-xmod/contacts.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/mod/contacts.php b/mod/contacts.php
index c99ac1452..001bf12af 100755
--- a/mod/contacts.php
+++ b/mod/contacts.php
@@ -447,9 +447,10 @@ function contacts_content(&$a) {
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
WHERE `uid` = %d AND `pending` = 0 $sql_extra $sql_extra2 ",
intval($_SESSION['uid']));
- if(count($r))
+ if(count($r)) {
$a->set_pager_total($r[0]['total']);
-
+ $total = $r[0]['total'];
+ }
@@ -518,7 +519,7 @@ function contacts_content(&$a) {
$o .= replace_macros($tpl,array(
'$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''),
'$tabs' => $t,
- '$total' => $r[0]['total'],
+ '$total' => $total,
'$search' => $search_hdr,
'$desc' => t('Search your contacts'),
'$finding' => (strlen($search) ? t('Finding: ') . "'" . $search . "'" : ""),