From 9387fd1a91d3ddd0c75b646c33a1c358bf16f5a6 Mon Sep 17 00:00:00 2001 From: daitingting Date: Tue, 10 Jul 2018 15:00:23 +0800 Subject: [PATCH] * Adjust codes. --- module/bug/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/model.php b/module/bug/model.php index b8bc244652..7405d1673e 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -2430,7 +2430,7 @@ class bugModel extends model $canBatchResolve = common::hasPriv('bug', 'batchResolve'); $canBatchAssignTo = common::hasPriv('bug', 'batchAssignTo'); - $canBatchAction = $canBatchEdit or $canBatchConfirm or $canBatchClose or $canBatchActivate or $canBatchChangeBranch or $canBatchChangeModule or $canBatchResolve or $canBatchAssignTo or $canBatchCancel; + $canBatchAction = $canBatchEdit or $canBatchConfirm or $canBatchClose or $canBatchActivate or $canBatchChangeBranch or $canBatchChangeModule or $canBatchResolve or $canBatchAssignTo; $canView = common::hasPriv('bug', 'view'); $bugLink = inlink('view', "bugID=$bug->id");