From 74378b546e9e384a10da4f07cc63528ce5da548b Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Mon, 22 Feb 2016 16:16:46 +0000 Subject: [PATCH] Update api.php Added missing ) on line 11 --- api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.php b/api.php index 8af76275..ea74ca5f 100644 --- a/api.php +++ b/api.php @@ -8,7 +8,7 @@ $data = array_merge($data, getSummaryData()); } - if (isset($_GET['summary']) || !count($_GET) { + if (isset($_GET['summary']) || !count($_GET)) { $sum = getSummaryData(); $sum['ads_blocked_today'] = number_format( $sum['ads_blocked_today']); $sum['dns_queries_today'] = number_format( $sum['dns_queries_today']);