From d09003dcff942b51107fa3784ea91dd59b490c5d Mon Sep 17 00:00:00 2001 From: Paolo Tacconi Date: Mon, 29 Sep 2014 10:05:31 +0200 Subject: Numbers shouldn't be strings --- mod/siteinfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/siteinfo.php') diff --git a/mod/siteinfo.php b/mod/siteinfo.php index bdae14edb..4568906f3 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -54,7 +54,7 @@ function siteinfo_init(&$a) { $r = q("select count(channel_id) as channels_total from channel left join account on account_id = channel_account_id where account_flags = 0 "); if($r) - $channels_total = $r[0]['channels_total']; + $channels_total = intval($r[0]['channels_total']); $r = q("select channel_id from channel left join account on account_id = channel_account_id where account_flags = 0 and account_lastlog > UTC_TIMESTAMP - INTERVAL 6 MONTH"); @@ -92,7 +92,7 @@ function siteinfo_init(&$a) { intval(ITEM_WALL) ); if (is_array($posts)) - $local_posts = $posts[0]["local_posts"]; + $local_posts = intval($posts[0]["local_posts"]); $data = Array( 'version' => RED_VERSION, -- cgit v1.2.3