From bc5a2ecf9cc400f0c74bfcbb594b0eba04bd829c Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Mon, 9 Aug 2021 09:44:26 +0800 Subject: [PATCH] * Fix bug #13021. --- module/todo/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/todo/control.php b/module/todo/control.php index 3e3201e198..8335be389d 100644 --- a/module/todo/control.php +++ b/module/todo/control.php @@ -345,7 +345,7 @@ class todo extends control } $this->view->todo = $this->todo->getById($todoID); - $this->view->members = $this->loadModel('user')->getPairs(); + $this->view->members = $this->loadModel('user')->getPairs('noclosed'); $this->view->times = date::buildTimeList($this->config->todo->times->begin, $this->config->todo->times->end, $this->config->todo->times->delta); $this->view->time = date::now(); $this->display();