From 75e48bc11792895b4fb02649e53695b7b6e8dd88 Mon Sep 17 00:00:00 2001 From: liuyongkai Date: Fri, 4 Nov 2022 00:23:33 +0000 Subject: [PATCH 1/2] * 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) From f1b7f2e045eb2063531d51b12243d6daa38b5590 Mon Sep 17 00:00:00 2001 From: liuyongkai Date: Fri, 4 Nov 2022 00:25:13 +0000 Subject: [PATCH 2/2] * Resolve feedback #1335. --- module/execution/control.php | 2 ++ module/execution/model.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/module/execution/control.php b/module/execution/control.php index 9d65a7bbcb..6e6036cfb8 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -3286,6 +3286,8 @@ class execution extends control * @param int $storyID * @param string $confirm yes|no * @param string $from taskkanban + * @param int $laneID + * @param int $columnID * @access public * @return void */ diff --git a/module/execution/model.php b/module/execution/model.php index fd5bc47e92..83933781b8 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -2863,6 +2863,8 @@ class executionModel extends model * * @param int $executionID * @param int $storyID + * @param int $laneID + * @param int $columnID * @access public * @return void */