Merge pull request #6080 from annando/issue-6074
Issue 6074: Language and "explicit" are now exported
This commit is contained in:
commit
e53bba0457
|
@ -50,6 +50,8 @@ function friendica_init(App $a)
|
||||||
'url' => System::baseUrl(),
|
'url' => System::baseUrl(),
|
||||||
'addons' => $visible_addons,
|
'addons' => $visible_addons,
|
||||||
'locked_features' => $locked_features,
|
'locked_features' => $locked_features,
|
||||||
|
'explicit_content' => (int)Config::get('system', 'explicit_content', false),
|
||||||
|
'language' => Config::get('system','language'),
|
||||||
'register_policy ' => $register_policy[intval(Config::get('config', 'register_policy'))],
|
'register_policy ' => $register_policy[intval(Config::get('config', 'register_policy'))],
|
||||||
'admin' => $admin,
|
'admin' => $admin,
|
||||||
'site_name' => Config::get('config', 'sitename'),
|
'site_name' => Config::get('config', 'sitename'),
|
||||||
|
@ -58,6 +60,7 @@ function friendica_init(App $a)
|
||||||
'no_scrape_url' => System::baseUrl().'/noscrape'
|
'no_scrape_url' => System::baseUrl().'/noscrape'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
header('Content-type: application/json; charset=utf-8');
|
||||||
echo json_encode($data);
|
echo json_encode($data);
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue