diff options
author | friendica <info@friendica.com> | 2013-07-24 18:17:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-24 18:17:34 -0700 |
commit | 36f63573c5cd471f3296dff0a277900093267cf3 (patch) | |
tree | 368d139e13cbe88682717ceac29938db3279b4ef /mod | |
parent | f92266d8040dd4d2e0aa08760d2ab5a8d9a1dfb3 (diff) | |
download | volse-hubzilla-36f63573c5cd471f3296dff0a277900093267cf3.tar.gz volse-hubzilla-36f63573c5cd471f3296dff0a277900093267cf3.tar.bz2 volse-hubzilla-36f63573c5cd471f3296dff0a277900093267cf3.zip |
more site stats
Diffstat (limited to 'mod')
-rw-r--r-- | mod/zfinger.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php index 50f4d0afe..12a24259e 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -196,6 +196,11 @@ function zfinger_init(&$a) { require_once('include/account.php'); $ret['site']['accounts'] = account_total(); + + require_once('include/identity.php'); + $ret['site']['channels'] = channel_total(); + + $ret['site']['admin'] = get_config('system','admin_email'); json_return_and_die($ret); |