]> git.mxchange.org Git - friendica.git/commitdiff
Directory issue 15: Support the "account-type"
authorMichael <heluecht@pirati.ca>
Mon, 5 Nov 2018 17:59:46 +0000 (17:59 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 5 Nov 2018 17:59:46 +0000 (17:59 +0000)
mod/noscrape.php

index 3a8abe2290928e62c40eeb0cda12a389c042af21..9d244a42c8876e85a005b6f0748f93b058924748 100644 (file)
@@ -27,12 +27,13 @@ function noscrape_init(App $a)
        Profile::load($a, $which, $profile);
 
        $json_info = [
-               'addr'     => $a->profile['addr'],
-               'nick'     => $which,
-               'guid'     => $a->profile['guid'],
-               'key'      => $a->profile['pubkey'],
-               'homepage' => System::baseUrl()."/profile/{$which}",
-               'comm'     => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY),
+               'addr'         => $a->profile['addr'],
+               'nick'         => $which,
+               'guid'         => $a->profile['guid'],
+               'key'          => $a->profile['pubkey'],
+               'homepage'     => System::baseUrl()."/profile/{$which}",
+               'comm'         => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY),
+               'account-type' => $a->profile['account-type'],
        ];
 
        if (!$a->profile['net-publish'] || $a->profile['hidewall']) {