This commit is contained in:
songchenxuan
2023-11-08 09:33:27 +08:00
parent 2e28d02e82
commit 49e8ec4d49
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3475,7 +3475,7 @@ class executionModel extends model
/* Unset burn information that is greater than the execution end date. */
foreach($executionBurnList as $date => $burnInfo)
{
if($date > $end) unset($executionBurns[$date]);
if($date > $end) unset($executionBurnList[$date]);
}
$executionBurnList = $this->processBurnData($executionBurnList, $this->config->execution->defaultBurnPeriod, $begin, $end);