aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/statistics_fns.php20
-rw-r--r--include/zot.php2
2 files changed, 15 insertions, 7 deletions
diff --git a/include/statistics_fns.php b/include/statistics_fns.php
index cbff3b0b7..d213485bf 100644
--- a/include/statistics_fns.php
+++ b/include/statistics_fns.php
@@ -7,7 +7,7 @@ function update_channels_total_stat() {
$channels_total_stat = intval($r[0]['channels_total']);
set_config('system','channels_total_stat',$channels_total_stat);
} else {
- set_config('system','channels_total_stat',null);
+ set_config('system','channels_total_stat',0);
}
}
@@ -30,10 +30,10 @@ function update_channels_active_halfyear_stat() {
$channels_active_halfyear_stat = count($x);
set_config('system','channels_active_halfyear_stat',$channels_active_halfyear_stat);
} else {
- set_config('system','channels_active_halfyear_stat',null);
+ set_config('system','channels_active_halfyear_stat',0);
}
} else {
- set_config('system','channels_active_halfyear_stat',null);
+ set_config('system','channels_active_halfyear_stat',0);
}
}
@@ -56,10 +56,10 @@ function update_channels_active_monthly_stat() {
$channels_active_monthly_stat = count($x);
set_config('system','channels_active_monthly_stat',$channels_active_monthly_stat);
} else {
- set_config('system','channels_active_monthly_stat',null);
+ set_config('system','channels_active_monthly_stat',0);
}
} else {
- set_config('system','channels_active_monthly_stat',null);
+ set_config('system','channels_active_monthly_stat',0);
}
}
@@ -69,8 +69,16 @@ function update_local_posts_stat() {
$local_posts_stat = intval($posts[0]["local_posts"]);
set_config('system','local_posts_stat',$local_posts_stat);
} else {
- set_config('system','local_posts_stat',null);
+ set_config('system','local_posts_stat',0);
}
}
+function update_local_comments_stat() {
+ $posts = q("SELECT COUNT(*) AS local_posts FROM item WHERE item_wall = 1 and id != parent");
+ if (!is_array($posts))
+ $local_posts = 0;
+ else
+ $local_posts = $posts[0]["local_posts"];
+ set_config('system','local_comments_stat', $local_posts);
+} \ No newline at end of file
diff --git a/include/zot.php b/include/zot.php
index 05475d051..677fdf6b7 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -2831,7 +2831,7 @@ function import_site($arr, $pubkey) {
$access_policy = ACCESS_PRIVATE;
if($access_policy != ACCESS_PRIVATE) {
- $x = z_fetch_url($arr['url'] . '/siteinfo/json');
+ $x = z_fetch_url($arr['url'] . '/siteinfo.json');
if(! $x['success'])
$access_policy = ACCESS_PRIVATE;
}