From 2f8f79d9b9c9f0f610a231d6a7abff830cb847af Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sun, 21 Apr 2024 17:10:59 +0800 Subject: [PATCH] 1 --- webapp/controller/OtherController.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/controller/OtherController.class.php b/webapp/controller/OtherController.class.php index 4effc5e5..257023a0 100644 --- a/webapp/controller/OtherController.class.php +++ b/webapp/controller/OtherController.class.php @@ -196,7 +196,7 @@ class OtherController extends BaseAuthedController { if (!$taskMeta) { return true; } - if (myself()->_getNowTime() > strtotime($taskMeta['income_start_time'])) { + if (myself()->_getNowTime() <= strtotime($taskMeta['income_start_time'])) { return true; } }