Output all technical fields - even for hidden contacts

This commit is contained in:
Michael 2018-11-13 07:09:14 +00:00
parent b5fa518998
commit edc6ba976d
1 changed files with 5 additions and 5 deletions

View File

@ -36,6 +36,11 @@ function noscrape_init(App $a)
'account-type' => $a->profile['account-type'],
];
$dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
foreach ($dfrn_pages as $dfrn) {
$json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
}
if (!$a->profile['net-publish'] || $a->profile['hidewall']) {
header('Content-type: application/json; charset=utf-8');
$json_info["hide"] = true;
@ -99,11 +104,6 @@ function noscrape_init(App $a)
}
}
$dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
foreach ($dfrn_pages as $dfrn) {
$json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
}
//Output all the JSON!
header('Content-type: application/json; charset=utf-8');
echo json_encode($json_info);