From 75e48bc11792895b4fb02649e53695b7b6e8dd88 Mon Sep 17 00:00:00 2001 From: liuyongkai Date: Fri, 4 Nov 2022 00:23:33 +0000 Subject: [PATCH] * Resolve feedback #1335. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index cd2cdd62ac..fd5bc47e92 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -2886,7 +2886,7 @@ class executionModel extends model ->andWhere('lane')->eq($laneID) ->fetch(); /* Resolve signal ','. */ - $cell->cards = str_replace(",$storyID", '', $cell->cards); + $cell->cards = str_replace(",$storyID,", ',', $cell->cards); if(strlen($cell->cards) == 1) $cell->cards = ''; $this->dao->update(TABLE_KANBANCELL)->data($cell) ->where('kanban')->eq($executionID)