]> git.mxchange.org Git - friendica.git/commitdiff
Remove superfluous calls to DI::baseUrl in Contact:photoMenu
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 9 Nov 2022 00:31:09 +0000 (19:31 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Wed, 9 Nov 2022 00:31:09 +0000 (19:31 -0500)
src/Model/Contact.php

index 355127de34706e66ac3dc456a9a18d8c3570c943..64ce451e46cac6b84b11c54683d578e30cc811cc 100644 (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 = '';