From 58e70164baeb7bb9ca9bc7366e083d1b0e3c053c Mon Sep 17 00:00:00 2001 From: Masco Skray Date: Thu, 11 Oct 2018 20:34:18 +0800 Subject: [PATCH] fix(uoj/1/app/controllers): fix Judgement Failed submissions table not shown for superuser When printing the table of Judgement Failed items at super-manage, there is nothing shown. It caused by using echoSubmissionsList(), arguments that 3 passed but exactly 4 expected. So add the missing argument, and let the result hidden because we select an exact result. Also, because of the typo of "Judgement", there will be nothing shown if only fixed too few arguments. This commit changes it too. --- uoj/1/app/controllers/super_manage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uoj/1/app/controllers/super_manage.php b/uoj/1/app/controllers/super_manage.php index 8d57052..7fe0a8e 100644 --- a/uoj/1/app/controllers/super_manage.php +++ b/uoj/1/app/controllers/super_manage.php @@ -295,7 +295,7 @@ EOD;

测评失败的提交记录

- + ''), $myUser); ?>
printHTML() ?>