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);
|