* Merge #5935f603f4,Change judgment condition.

This commit is contained in:
tanghucheng
2023-11-09 00:31:19 -05:00
parent 32b2da32b0
commit b0515caf4a
14 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -218,7 +218,7 @@ $fnGenerateDefaultData = function() use ($config, $plans, $planID, $stages, $exe
$item->realEnd = $plan->realEnd;
$item->desc = $plan->desc;
$item->setMilestone = $plan->setMilestone;
if($config->edition == 'max' && $executionType == 'stage')
if(in_array($config->edition, array('max', 'ipd')) && $executionType == 'stage')
{
$item->output = empty($plan->output) ? 0 : explode(',', $plan->output);
}