Merge branch 'sprint/hufangzhou_bug_31444' into 'master'

* Fix bug #31444.

See merge request easycorp/zentaopms!6687
This commit is contained in:
王怡栋
2023-01-05 02:55:18 +00:00
+1 -1
View File
@@ -486,7 +486,7 @@
}
foreach($story->executions as $executionID => $execution)
{
if(isset($story->tasks[$executionID])) continue;
if(!isset($executions[$executionID]) or isset($story->tasks[$executionID])) continue;
$execName = ($execution->type == 'kanban' and isonlybody()) ? $executions[$executionID] : html::a($this->createLink('execution', 'view', "executionID=$executionID"), $executions[$executionID], '', "class='text-muted'");
echo "<li title='$execution->name'>" . $execName . '</li>';
}