diff options
author | friendica <info@friendica.com> | 2012-05-04 01:46:36 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-04 01:46:36 -0700 |
commit | 9ecd128e5e2aba527138c1a4afa2ff17caebe896 (patch) | |
tree | 3631586eff2ba10088be2bf82802157a98cf0f04 /include/contact_widgets.php | |
parent | 22c8fe46a554457b43b9721f1f46739511398060 (diff) | |
download | volse-hubzilla-9ecd128e5e2aba527138c1a4afa2ff17caebe896.tar.gz volse-hubzilla-9ecd128e5e2aba527138c1a4afa2ff17caebe896.tar.bz2 volse-hubzilla-9ecd128e5e2aba527138c1a4afa2ff17caebe896.zip |
"show more" friends in common
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r-- | include/contact_widgets.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 4dab6a53e..42d3afdee 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -175,12 +175,16 @@ function common_friends_visitor_widget($profile_uid) { return; if($cid) - $r = common_friends($profile_uid,$cid,5,true); + $r = common_friends($profile_uid,$cid,0,5,true); else - $r = common_friends_zcid($profile_uid,$zcid,5,true); + $r = common_friends_zcid($profile_uid,$zcid,0,5,true); return replace_macros(get_markup_template('remote_friends_common.tpl'), array( - '$desc' => sprintf( tt("%d friend in common", "%d friends in common", $t), $t), + '$desc' => sprintf( tt("%d contact in common", "%d contacts in common", $t), $t), + '$base' => $a->get_baseurl(), + '$uid' => $profile_uid, + '$cid' => $cid, + '$more' => t('show more'), '$items' => $r )); |