diff options
author | friendica <info@friendica.com> | 2012-05-01 20:33:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-01 20:33:19 -0700 |
commit | 594803afca25bf173cc42bb523a6931cc386777a (patch) | |
tree | 6804918c2ae778f7b5667794e4d9571c17450248 /include/contact_widgets.php | |
parent | 066d69b21c4d612b35a3e15ae1d5db6344935e53 (diff) | |
download | volse-hubzilla-594803afca25bf173cc42bb523a6931cc386777a.tar.gz volse-hubzilla-594803afca25bf173cc42bb523a6931cc386777a.tar.bz2 volse-hubzilla-594803afca25bf173cc42bb523a6931cc386777a.zip |
reduce the scope a bit
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r-- | include/contact_widgets.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 0bf0b29d4..3fd311e4a 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -154,17 +154,17 @@ function common_friends_visitor_widget($profile_uid) { } } - if($cid == 0 && $zcid == 0) + if($zcid == 0) return; require_once('include/socgraph.php'); - $t = count_common_friends_remote($profile_uid,$cid,$zcid); + $t = count_common_friends_zcid($profile_uid,$zcid); if(! $t) return; - $r = common_friends_remote($profile_uid,$cid,$zcid); + $r = common_friends_zcid($profile_uid,$zcid); return replace_macros(get_markup_template('remote_friends_common.tpl'), array( '$desc' => sprintf( tt("%d friend in common", "%d friends in common", $t), $t), |