summaryrefslogtreecommitdiff
path: root/app/Model/TagDuplicationModel.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model/TagDuplicationModel.php')
-rw-r--r--app/Model/TagDuplicationModel.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/TagDuplicationModel.php b/app/Model/TagDuplicationModel.php
index fb0d8170..ac54f5d0 100644
--- a/app/Model/TagDuplicationModel.php
+++ b/app/Model/TagDuplicationModel.php
@@ -26,7 +26,7 @@ class TagDuplicationModel extends Base
$results = array();
foreach ($tags as $tag) {
- $results[] = $this->tagModel->create($dst_project_id, $tag['name']);
+ $results[] = $this->tagModel->create($dst_project_id, $tag['name'], $tag['color_id']);
}
return ! in_array(false, $results, true);