Suppress relationship string in template vars for public contact

This commit is contained in:
Hypolite Petovan 2019-08-15 21:24:33 -04:00
parent 6f944f1e53
commit 98b0f97639
1 changed files with 17 additions and 15 deletions

View File

@ -984,24 +984,26 @@ class Contact extends BaseModule
$dir_icon = '';
$alt_text = '';
switch ($rr['rel']) {
case Model\Contact::FRIEND:
$dir_icon = 'images/lrarrow.gif';
$alt_text = L10n::t('Mutual Friendship');
break;
if ($rr['uid']) {
switch ($rr['rel']) {
case Model\Contact::FRIEND:
$dir_icon = 'images/lrarrow.gif';
$alt_text = L10n::t('Mutual Friendship');
break;
case Model\Contact::FOLLOWER;
$dir_icon = 'images/larrow.gif';
$alt_text = L10n::t('is a fan of yours');
break;
case Model\Contact::FOLLOWER;
$dir_icon = 'images/larrow.gif';
$alt_text = L10n::t('is a fan of yours');
break;
case Model\Contact::SHARING;
$dir_icon = 'images/rarrow.gif';
$alt_text = L10n::t('you are a fan of');
break;
case Model\Contact::SHARING;
$dir_icon = 'images/rarrow.gif';
$alt_text = L10n::t('you are a fan of');
break;
default:
break;
default:
break;
}
}
$url = Model\Contact::magicLink($rr['url']);