From 76061af4517fe1dae5e1d1fc56768134915aefee Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sat, 9 Nov 2024 13:43:00 +0800 Subject: [PATCH] 1 --- webapp/services/CircuitRankingService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/services/CircuitRankingService.php b/webapp/services/CircuitRankingService.php index 7fa58544..2948c3b4 100644 --- a/webapp/services/CircuitRankingService.php +++ b/webapp/services/CircuitRankingService.php @@ -204,7 +204,7 @@ class CircuitRankingService extends BaseService { ); $data = array(); foreach ($rows as $row) { - if ($row['cumulative_scor'] > 0) { + if ($row['cumulative_score'] > 0) { array_push($data, $row); } }