From a549b078ad867aba118fcd697c277b8a5908635c Mon Sep 17 00:00:00 2001 From: sunguangming Date: Wed, 3 Jan 2024 14:18:08 +0800 Subject: [PATCH] * Fix bug #110292. --- module/execution/model.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/execution/model.php b/module/execution/model.php index a1e3ed2194..5590174775 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -3186,6 +3186,8 @@ class executionModel extends model { if(in_array($member->account, $accountList)) continue; + $member->root = isset($member->root) ? $member->root : $execution->id; + $member->type = isset($member->type) ? $member->type : 'execution'; $member->join = isset($oldJoin[$member->account]) ? $oldJoin[$member->account] : helper::today(); $executionMember[$member->account] = $member; $accountList[] = $member->account;