From c2e9d6c149493a7cfc57ebedb9d6919b84a62b9d Mon Sep 17 00:00:00 2001 From: Roman Hergenreder Date: Sat, 18 Jul 2020 13:00:49 +0200 Subject: [PATCH] Another small fix --- core/Api/Stats.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Api/Stats.class.php b/core/Api/Stats.class.php index ce32adf..3844943 100644 --- a/core/Api/Stats.class.php +++ b/core/Api/Stats.class.php @@ -58,6 +58,7 @@ class Stats extends Request { ->from("Visitor") ->where(new Compare("day", $monthStart, ">=")) ->where(new Compare("day", $monthEnd, "<")) + ->where(new Compare("count", 2, ">=")) ->execute(); $this->success = ($res !== false);