Remove superfluous calls to DI::baseUrl in Contact:photoMenu

This commit is contained in:
Hypolite Petovan 2022-11-08 19:31:09 -05:00
parent 6af025246e
commit 386c08aa05
1 changed files with 4 additions and 4 deletions

View File

@ -1149,7 +1149,7 @@ class Contact
$sparkle = false;
if (($contact['network'] === Protocol::DFRN) && !$contact['self'] && empty($contact['pending'])) {
$sparkle = true;
$profile_link = DI::baseUrl() . '/redir/' . $contact['id'];
$profile_link = 'redir/' . $contact['id'];
} else {
$profile_link = $contact['url'];
}
@ -1165,12 +1165,12 @@ class Contact
}
if (self::canReceivePrivateMessages($contact) && empty($contact['pending'])) {
$pm_url = DI::baseUrl() . '/message/new/' . $contact['id'];
$pm_url = 'message/new/' . $contact['id'];
}
$contact_url = DI::baseUrl() . '/contact/' . $contact['id'];
$contact_url = 'contact/' . $contact['id'];
$posts_link = DI::baseUrl() . '/contact/' . $contact['id'] . '/conversations';
$posts_link = 'contact/' . $contact['id'] . '/conversations';
$follow_link = '';
$unfollow_link = '';