From 07906fb1f84bf8818d986474c9b76f96758407aa Mon Sep 17 00:00:00 2001 From: mayue Date: Tue, 24 May 2022 07:38:39 +0000 Subject: [PATCH] * Add code comments. --- module/execution/model.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/execution/model.php b/module/execution/model.php index a4dfb60ce4..4a6a20b6a9 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -961,6 +961,7 @@ class executionModel extends model } } + /* Update the status of the parent stage. */ if($oldExecution->type == 'stage') { $parent = $this->getByID($oldExecution->parent); @@ -1011,6 +1012,7 @@ class executionModel extends model if(!dao::isError()) { + /* Update the status of the parent stage. */ if($oldExecution->type == 'stage') { $parent = $this->getByID($oldExecution->parent);