mirror of
https://github.com/friendica/friendica
synced 2025-04-25 08:30:11 +00:00
Issue-#3873
Replace deprecated functions with new syntax.
This commit is contained in:
parent
9eb1f4b9c3
commit
0dfa57948f
124 changed files with 819 additions and 679 deletions
|
@ -5,12 +5,13 @@
|
|||
*/
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\Config;
|
||||
|
||||
require_once("include/plugin.php");
|
||||
|
||||
function statistics_json_init(App $a) {
|
||||
|
||||
if (!get_config("system", "nodeinfo")) {
|
||||
if (!Config::get("system", "nodeinfo")) {
|
||||
http_status_exit(404);
|
||||
killme();
|
||||
}
|
||||
|
@ -20,10 +21,10 @@ function statistics_json_init(App $a) {
|
|||
"network" => FRIENDICA_PLATFORM,
|
||||
"version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION,
|
||||
"registrations_open" => ($a->config['register_policy'] != 0),
|
||||
"total_users" => get_config('nodeinfo', 'total_users'),
|
||||
"active_users_halfyear" => get_config('nodeinfo', 'active_users_halfyear'),
|
||||
"active_users_monthly" => get_config('nodeinfo', 'active_users_monthly'),
|
||||
"local_posts" => get_config('nodeinfo', 'local_posts')
|
||||
"total_users" => Config::get('nodeinfo', 'total_users'),
|
||||
"active_users_halfyear" => Config::get('nodeinfo', 'active_users_halfyear'),
|
||||
"active_users_monthly" => Config::get('nodeinfo', 'active_users_monthly'),
|
||||
"local_posts" => Config::get('nodeinfo', 'local_posts')
|
||||
);
|
||||
|
||||
$statistics["services"] = array();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue