From ac61d3a403fa337d02cb343a0b2176970096aa32 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Nov 2023 10:55:15 +0800 Subject: [PATCH] * Fix bug #40300. --- module/todo/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/todo/zen.php b/module/todo/zen.php index 7b1085f2b1..7f4a6d0678 100755 --- a/module/todo/zen.php +++ b/module/todo/zen.php @@ -401,7 +401,7 @@ class todoZen extends todo $objectIdList = array(); $allTodos = $this->todo->getList($type, $account, $status); - if($form->data->todoIdList) $todoIdList = $form->data->todoIdList; + if($this->post->todoIdList) $todoIdList = $this->post->todoIdList; /* Initialize todos whose need to edited. */ foreach($allTodos as $todo)