diff --git a/module/execution/view/kanban.html.php b/module/execution/view/kanban.html.php index 01d9ad2d34..d470915d91 100644 --- a/module/execution/view/kanban.html.php +++ b/module/execution/view/kanban.html.php @@ -63,10 +63,10 @@ $canDeleteRegion = commonModel::hasPriv('kanban', 'deleteRegion'); $canCreateLane = commonModel::hasPriv('kanban', 'createLane'); $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')); $canImportBug = ($productID and common::hasPriv('execution', 'importBug')); -$canImportTask = ($productID and common::hasPriv('execution', 'importTask')); $canCreateStory = ($productID and common::hasPriv('story', 'create')); $canBatchCreateStory = ($productID and common::hasPriv('story', 'batchCreate')); $canLinkStory = ($productID and common::hasPriv('execution', 'linkStory'));