* Code for task#78030.

This commit is contained in:
xieqiyu
2022-11-30 22:29:51 +08:00
parent 7c51a7f992
commit c9bcbe74ae
+5 -2
View File
@@ -818,8 +818,11 @@ class kanbanModel extends model
}
elseif($branchID)
{
$branchName = $this->branch->getById($branchID);
$branches = array($branchID => $branchName);
foreach(explode(',', $branchID) as $id)
{
$branchName = $this->branch->getById($id);
$branches[$id] = $branchName;
}
}
foreach($branches as $id => $name)