소스 검색

Another small fix

Roman Hergenreder 3 년 전
부모
커밋
c2e9d6c149
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      core/Api/Stats.class.php

+ 1 - 0
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);