]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix - provide magic links for remote user in magicLink()
authorrabuzarus <rabuzarus@t-online.de>
Fri, 18 Jan 2019 16:50:21 +0000 (17:50 +0100)
committerrabuzarus <rabuzarus@t-online.de>
Fri, 18 Jan 2019 16:50:21 +0000 (17:50 +0100)
src/Content/Text/HTML.php
src/Model/Contact.php

index f7ac040eec38a9fcaf947268c54f92267c195bef..a3ef8d81fc1167168d978fbf813b6a2f16330b27 100644 (file)
@@ -889,7 +889,7 @@ class HTML
        }
 
        /**
-        * @brief Format contacts as picture links or as texxt links
+        * @brief Format contacts as picture links or as text links
         *
         * @param array $contact Array with contacts which contains an array with
         *      int 'id' => The ID of the contact
index 408a1ade4b0f2ff5a7815f26e76e215687b708f8..52bcc3b54b909d9c90bd5f52058f13b2f84c9c9b 100644 (file)
@@ -2089,7 +2089,7 @@ class Contact extends BaseObject
         */
        public static function magicLink($contact_url, $url = '')
        {
-               if (!local_user() && remote_user()) {
+               if (!local_user() && !remote_user()) {
                        return $url ?: $contact_url; // Equivalent to: ($url != '') ? $url : $contact_url;
                }