]> git.mxchange.org Git - friendica.git/commitdiff
Fiddling with the unknown contact array values
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 13 Apr 2017 01:32:06 +0000 (21:32 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 13 Apr 2017 01:32:06 +0000 (21:32 -0400)
include/acl_selectors.php

index 0e30ee06e80c6c4c486788f2c90c8e386ccec77a..4cc810fb5cba6d705a222c7aaf9feb09a8a8c225 100644 (file)
@@ -635,18 +635,18 @@ function acl_lookup(App $a, $out_type = 'json') {
                );
                if (dbm::is_result($r)) {
                        foreach ($r as $row) {
-                               $contact = get_contact_details_by_url($row['author-link'], 0);
+                               $contact = get_contact_details_by_url($row['author-link']);
 
                                if (count($contact) > 0) {
                                        $unknown_contacts[] = array(
                                                'type'    => 'cu',
                                                'photo'   => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO),
                                                'name'    => htmlentities($contact['name']),
-                                               'id'      => intval($contact['id']),
+                                               'id'      => intval($contact['cid']),
                                                'network' => $contact['network'],
                                                'link'    => $contact['url'],
-                                               'nick'    => $contact['nick'],
-                                               'forum'   => false
+                                               'nick'    => $contact['nick'] ? : $contact['addr'],
+                                               'forum'   => $contact['forum']
                                        );
                                }
                        }