don't provide 'show more' on remote friends in common unless there are actually more
This commit is contained in:
parent
10812e0c19
commit
a048fd806a
|
@ -183,7 +183,8 @@ function common_friends_visitor_widget($profile_uid) {
|
||||||
'$desc' => sprintf( tt("%d contact in common", "%d contacts in common", $t), $t),
|
'$desc' => sprintf( tt("%d contact in common", "%d contacts in common", $t), $t),
|
||||||
'$base' => $a->get_baseurl(),
|
'$base' => $a->get_baseurl(),
|
||||||
'$uid' => $profile_uid,
|
'$uid' => $profile_uid,
|
||||||
'$cid' => $cid,
|
'$cid' => (($cid) ? $cid : '0'),
|
||||||
|
'$linkmore' => (($t > 5) ? 'true' : ''),
|
||||||
'$more' => t('show more'),
|
'$more' => t('show more'),
|
||||||
'$items' => $r
|
'$items' => $r
|
||||||
));
|
));
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<div id="remote-friends-in-common" class="bigwidget">
|
<div id="remote-friends-in-common" class="bigwidget">
|
||||||
<div id="rfic-desc">$desc <a href="$base/common/rem/$uid/$cid">$more</a></div>
|
<div id="rfic-desc">$desc {{ if $linkmore }}<a href="$base/common/rem/$uid/$cid">$more</a>{{ endif }}</div>
|
||||||
{{ if $items }}
|
{{ if $items }}
|
||||||
{{ for $items as $item }}
|
{{ for $items as $item }}
|
||||||
<div class="profile-match-wrapper">
|
<div class="profile-match-wrapper">
|
||||||
|
|
Loading…
Reference in a new issue