From 195ed0a2776d490c82d7c9bbd807fa042df3c028 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Fri, 31 May 2024 14:20:52 +0800 Subject: [PATCH] * Fix bug #50468. --- module/execution/ui/kanban.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/ui/kanban.html.php b/module/execution/ui/kanban.html.php index b5e79a4f60..a58716bd0c 100644 --- a/module/execution/ui/kanban.html.php +++ b/module/execution/ui/kanban.html.php @@ -85,7 +85,7 @@ if($canBatchCreateBug) } else { - $createMenu[] = array('text' => $lang->bug->batchCreate, 'url' => helper::createLink('bug', 'batchCreate', "productID=$productID&branch=$branchID&extra=&executionID=$execution->id"), 'data-toggle' => 'modal', 'data-size' => 'lg'); + $createMenu[] = array('text' => $lang->bug->batchCreate, 'url' => helper::createLink('bug', 'batchCreate', "productID=$productID&branch=$branchID&executionID=$execution->id&extra="), 'data-toggle' => 'modal', 'data-size' => 'lg'); } } if(($hasStoryButton or $hasBugButton) and $hasTaskButton) $createMenu[] = array('type' => 'divider');