From 6f6dc4741ace02312513f8416cd0a8b763da4b56 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Tue, 7 Dec 2021 17:13:23 +0800 Subject: [PATCH] * Fix bug #17225. --- module/execution/view/all.html.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/module/execution/view/all.html.php b/module/execution/view/all.html.php index cabe069803..d9b45bb968 100644 --- a/module/execution/view/all.html.php +++ b/module/execution/view/all.html.php @@ -139,10 +139,10 @@ percent . '%';?> stage->typeList, $execution->attribute, '');?> - begin;?> - end;?> - realBegan;?> - realEnd;?> + begin) ? '' : $execution->begin;?> + end) ? '' : $execution->end;?> + realBegan) ? '' : $execution->realBegan;?> + realEnd) ? '' : $execution->realEnd;?> id}", $execution, 'list', '', '', 'iframe', true); @@ -213,10 +213,10 @@ percent . '%';?> stage->typeList, $child->attribute, '');?> - begin;?> - end;?> - realBegan;?> - realEnd;?> + begin) ? '' : $child->begin;?> + end) ? '' : $child->end;?> + realBegan) ? '' : $child->realBegan;?> + realEnd) ? '' : $child->realEnd;?> id}", $child, 'list', '', '', 'iframe', true);