From 4b8f5e69b938ecb35a76d7e7a922aa3c4059c5d5 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Sat, 22 Oct 2022 09:18:37 +0800 Subject: [PATCH] chore(web/group/manage/assignment): default end time --- web/app/controllers/group_manage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/controllers/group_manage.php b/web/app/controllers/group_manage.php index d69b93f..e930114 100644 --- a/web/app/controllers/group_manage.php +++ b/web/app/controllers/group_manage.php @@ -152,7 +152,7 @@ EOD); null ); $default_end_time = new DateTime(); - $default_end_time->setTime(17, 0, 0); + $default_end_time->setTime(22, 30, 0); $default_end_time->add(new DateInterval("P7D")); $add_new_assignment_form->addVInput('new_assignment_end_time', 'text', '截止时间', $default_end_time->format('Y-m-d H:i'), function ($end_time, &$vdata) {