From 94078cdc6ca793e67938894b3f3390560be4aae9 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Tue, 24 May 2022 13:39:27 +0800 Subject: [PATCH] * Fix bug for task #55255. --- module/kanban/view/space.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/kanban/view/space.html.php b/module/kanban/view/space.html.php index f2eb2a44b1..d84c12e01e 100644 --- a/module/kanban/view/space.html.php +++ b/module/kanban/view/space.html.php @@ -72,7 +72,7 @@ $canEdit = common::hasPriv('kanban','edit'); $canDelete = common::hasPriv('kanban','delete'); $canClose = (common::hasPriv('kanban', 'close') and $kanban->status == 'active'); - $canActivate = (common::hasPriv('kanban', 'activate') and $kanban->status == 'close'); + $canActivate = (common::hasPriv('kanban', 'activate') and $kanban->status == 'closed'); ?>