]> git.mxchange.org Git - friendica.git/commitdiff
Fix Message button.
authorvery-ape <git@verya.pe>
Thu, 20 May 2021 20:47:12 +0000 (13:47 -0700)
committervery-ape <git@verya.pe>
Fri, 21 May 2021 06:30:42 +0000 (23:30 -0700)
src/Model/Profile.php

index 3e35d60c2966fa67d90fd344af64fa6e71b5fa90..ff0897749896b3befd664f66b8dfce4e356e95f7 100644 (file)
@@ -145,7 +145,7 @@ class Profile
         */
        public static function load(App $a, $nickname, array $profiledata = [], $show_connect = true)
        {
-               $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
+               $user = DBA::selectFirst('user', [], ['nickname' => $nickname, 'account_removed' => false]);
 
                if (!DBA::isResult($user) && empty($profiledata)) {
                        Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
@@ -166,7 +166,16 @@ class Profile
                        }
                }
 
-               $profile = !empty($user['uid']) ? User::getOwnerDataById($user['uid'], false) : [];
+               if (empty($user['uid'])) {
+                       $profile = [];
+               } else {
+                       $profile = array_merge(
+                               $user,
+                               Profile::getByUID($user['uid']),
+                               Contact::getById(Contact::getIdForURL(Strings::normaliseLink(DI::baseurl() . '/profile/' . $nickname), local_user()))
+                       );
+                       $profile['cid'] = $profile['id'];
+               }
 
                if (empty($profile) && empty($profiledata)) {
                        Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
@@ -334,7 +343,7 @@ class Profile
 
                        if (Contact::canReceivePrivateMessages($profile)) {
                                if ($visitor_is_followed || $visitor_is_following) {
-                                       $wallmessage_link = $visitor_base_path . '/message/new/' . base64_encode($profile['addr'] ?? '');
+                                       $wallmessage_link = $visitor_base_path . '/message/new/' . $profile['cid'];
                                } elseif ($visitor_is_authenticated && !empty($profile['unkmail'])) {
                                        $wallmessage_link = 'wallmessage/' . $profile['nickname'];
                                }