From f01e63f4b9744abb45becb8e7fa415cc8f380490 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Fri, 20 Sep 2024 09:58:36 +0800 Subject: [PATCH] * [bug#51462,done,0.2h] Required fields for bulk task creation are the same as those for creating a single task. --- module/task/zen.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/task/zen.php b/module/task/zen.php index 43a9613e18..59ac2947bb 100644 --- a/module/task/zen.php +++ b/module/task/zen.php @@ -359,6 +359,8 @@ class taskZen extends task $showFields = $this->config->task->custom->batchCreateFields; if(strpos(",$showFields,", ',story,') !== false) $showFields .= ',preview,copyStory'; + $this->config->task->batchcreate->requiredFields = $this->config->task->create->requiredFields; + $this->view->title = $this->lang->task->batchCreate; $this->view->execution = $execution; $this->view->modules = $modules;