From 5397ec15768c42f7e2c1a2da9c5ea69de7526d61 Mon Sep 17 00:00:00 2001 From: wangyuting Date: Fri, 31 May 2024 13:07:50 +0800 Subject: [PATCH] * [bug#50462,done,0.5h,0h] Fix batch create task link error. --- module/my/config/table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/my/config/table.php b/module/my/config/table.php index 97ccfe47fb..28838fdc02 100644 --- a/module/my/config/table.php +++ b/module/my/config/table.php @@ -222,7 +222,7 @@ if($config->vision != 'lite') $config->my->task->actionList['batchCreate']['icon'] = 'split'; $config->my->task->actionList['batchCreate']['text'] = $lang->task->batchCreate; $config->my->task->actionList['batchCreate']['hint'] = $lang->task->children; - $config->my->task->actionList['batchCreate']['url'] = array('module' => 'task', 'method' => 'batchCreate', 'params' => 'executionID={execution}&storyID={story}&moduleID={module}&taskID={id}iframe=true'); + $config->my->task->actionList['batchCreate']['url'] = array('module' => 'task', 'method' => 'batchCreate', 'params' => 'executionID={execution}&storyID={story}&moduleID={module}&taskID={id}&iframe=true'); $config->my->task->actionList['batchCreate']['data-toggle'] = 'modal'; $config->my->task->actionList['batchCreate']['data-size'] = 'lg'; $config->my->task->actionList['batchCreate']['data-position'] = 'center';