From e774d710d8c31453b12c2ba2abec599f6099f374 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Mon, 11 Sep 2023 07:45:13 +0000 Subject: [PATCH] * Fix bug #38518. --- 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 afde5fef89..83741de310 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -6141,7 +6141,7 @@ class executionModel extends model if(!isset($sortedExecutions[$executionID]) and isset($executions[$executionID])) $sortedExecutions[$executionID] = $executions[$executionID]; $children = isset($childExecutions[$executionID]) ? $childExecutions[$executionID] : array(); - if(!empty($children)) $sortedExecutions += $this->resetExecutionSorts($executions, $children, $childExecutions); + if(!empty($children)) $sortedExecutions += $this->resetExecutionSorts($executions, $children); } return $sortedExecutions; }