We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b983907 commit aa99b7dCopy full SHA for aa99b7d
webapp/src/Service/SubmissionService.php
@@ -285,7 +285,9 @@ public function getSubmissionList(
285
$counts['inContest'] = (clone $queryBuilder)
286
->select('COUNT(s.submitid)')
287
->join('s.contest', 'c')
288
+ ->join('t.category', 'tc')
289
->andWhere('s.submittime BETWEEN c.starttime AND c.endtime')
290
+ ->andWhere('tc.visible = true')
291
->getQuery()
292
->getSingleScalarResult();
293
0 commit comments