aboutsummaryrefslogtreecommitdiffstats
path: root/include/contact_widgets.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-10-03 10:53:08 +0200
committerMario Vavti <mario@mariovavti.com>2017-10-03 10:53:08 +0200
commit66511d8f078cebdbad34bf1b40097159c2335bf4 (patch)
tree4241401e015d1a30777ad6c75689093d3d87ce9f /include/contact_widgets.php
parentf52e5d90b0b8ca57c249139176729b56dc4e929d (diff)
downloadvolse-hubzilla-66511d8f078cebdbad34bf1b40097159c2335bf4.tar.gz
volse-hubzilla-66511d8f078cebdbad34bf1b40097159c2335bf4.tar.bz2
volse-hubzilla-66511d8f078cebdbad34bf1b40097159c2335bf4.zip
move common connections widget to left aside
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r--include/contact_widgets.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index e5bb696f8..a13f87573 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -143,7 +143,7 @@ function cardcategories_widget($baseurl,$selected = '') {
-function common_friends_visitor_widget($profile_uid,$cnt = 10) {
+function common_friends_visitor_widget($profile_uid,$cnt = 25) {
if(local_channel() == $profile_uid)
return;
@@ -161,14 +161,14 @@ function common_friends_visitor_widget($profile_uid,$cnt = 10) {
return;
$r = common_friends($profile_uid,$observer_hash,0,$cnt,true);
-
+
return replace_macros(get_markup_template('remote_friends_common.tpl'), array(
- '$desc' => sprintf( t('Common connections: %d'), $t),
+ '$desc' => t('Common Connections'),
'$base' => z_root(),
'$uid' => $profile_uid,
'$cid' => $observer,
'$linkmore' => (($t > $cnt) ? 'true' : ''),
- '$more' => t('show more'),
+ '$more' => sprintf( t('View all %d common connections'), $t),
'$items' => $r
));