]> git.mxchange.org Git - friendica.git/commitdiff
When we have the field, we should use it :)
authorMichael Vogel <ike@pirati.ca>
Tue, 4 Oct 2016 03:58:47 +0000 (03:58 +0000)
committerMichael Vogel <ike@pirati.ca>
Tue, 4 Oct 2016 03:58:47 +0000 (03:58 +0000)
include/Contact.php

index 458f56ce524c1c3bfa87d8409de79a0e4234381c..6daba33844dc04c76c04668a194bb6b5a5538a38 100644 (file)
@@ -223,7 +223,7 @@ function get_contact_details_by_url($url, $uid = -1, $default = array()) {
        // Fetch the data from the gcontact table
        if (!$r)
                $r = q("SELECT 0 AS `id`, 0 AS `cid`, `id` AS `gid`, 0 AS `zid`, 0 AS `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, '' AS `xmpp`,
-                       `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, 0 AS `contact-type`, `birthday`, 0 AS `self`
+                       `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
                        FROM `gcontact` WHERE `nurl` = '%s'",
                                dbesc(normalise_link($url)));