]> git.mxchange.org Git - friendica.git/blobdiff - mod/match.php
Merge pull request #5862 from nupplaphil/rename_App_Methods
[friendica.git] / mod / match.php
index c4bea6767b12ed82e34c8f4099301ab423bfb394..bb1e4542aed0004eab693cdba92b3c10e4475291 100644 (file)
@@ -67,8 +67,8 @@ function match_content(App $a)
                $j = json_decode($x);
 
                if ($j->total) {
-                       $a->set_pager_total($j->total);
-                       $a->set_pager_itemspage($j->items_page);
+                       $a->setPagerTotal($j->total);
+                       $a->setPagerItemsPage($j->items_page);
                }
 
                if (count($j->results)) {
@@ -94,11 +94,11 @@ function match_content(App $a)
 
                                        $entry = [
                                                'url' => Contact::magicLink($jj->url),
-                                               'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $jj->url),
+                                               'itemurl' => defaults($contact_details, 'addr', $jj->url),
                                                'name' => $jj->name,
-                                               'details'       => $contact_details['location'],
-                                               'tags'          => $contact_details['keywords'],
-                                               'about'         => $contact_details['about'],
+                                               'details'       => defaults($contact_details, 'location', ''),
+                                               'tags'          => defaults($contact_details, 'keywords', ''),
+                                               'about'         => defaults($contact_details, 'about', ''),
                                                'account_type'  => Contact::getAccountType($contact_details),
                                                'thumb' => ProxyUtils::proxifyUrl($jj->photo, false, ProxyUtils::SIZE_THUMB),
                                                'inttxt' => ' ' . L10n::t('is interested in:'),