From 01ee421d05a2fa774507ece7ad6184dfb1aa7d74 Mon Sep 17 00:00:00 2001 From: klarkxy <278370456@qq.com> Date: Thu, 1 May 2025 17:50:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E6=90=9C=E7=B4=A2=E6=A1=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/problemset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/problemset.php b/web/problemset.php index 67744dd..9e00d0d 100644 --- a/web/problemset.php +++ b/web/problemset.php @@ -72,7 +72,7 @@ if (isset($_SESSION[$OJ_NAME . '_' . 'user_id'])) { if (isset($_SESSION[$OJ_NAME . '_' . 'administrator']) && isset($_GET['query_user_id'])) { $user_id = $_GET['query_user_id']; } - // TODO 增加筛选题目的时候也要看学生的对错信息 + // 增加筛选题目的时候也要看学生的对错信息 $sql = "SELECT problem_id, MIN(result) AS result FROM solution WHERE user_id=? and result>=4 GROUP BY problem_id "; $result = pdo_query($sql, $user_id); foreach ($result as $row) {