diff --git a/module/execution/view/kanban.html.php b/module/execution/view/kanban.html.php index f46f363bc3..6fef0bb1ff 100644 --- a/module/execution/view/kanban.html.php +++ b/module/execution/view/kanban.html.php @@ -70,7 +70,7 @@ $canCreateTask = common::hasPriv('task', 'create'); $canBatchCreateTask = common::hasPriv('task', 'batchCreate'); $canImportTask = common::hasPriv('execution', 'importTask'); $canCreateBug = ($productID and common::hasPriv('bug', 'create')); -$canBatchCreateBug = ($productID and common::hasPriv('bug', 'batchCreate')); +$canBatchCreateBug = ($productID and common::hasPriv('bug', 'batchCreate') && $execution->multiple); $canImportBug = ($productID and common::hasPriv('execution', 'importBug')); $canCreateStory = ($productID and common::hasPriv('story', 'create')); $canBatchCreateStory = ($productID and common::hasPriv('story', 'batchCreate'));