This commit is contained in:
田淑杰
2023-01-05 10:13:34 +08:00
parent 905b5965f6
commit 5ecaa57043
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -52,7 +52,7 @@
<?php if(isset($execution->delay)):?>
<span class="status-project status-delayed" title='<?php echo $lang->execution->delayed;?>'><?php echo $lang->execution->delayed;?></span>
<?php else:?>
<?php $statusName = $this->processStatus('project', $execution);?>
<?php $statusName = $this->processStatus('execution', $execution);?>
<span class="status-project status-<?php echo $execution->status?>" title='<?php echo $statusName;?>'><?php echo $statusName;?></span>
<?php endif;?>
</td>
+1
View File
@@ -167,6 +167,7 @@ class tutorialModel extends model
$project->fluidBoard = 0;
$project->deleted = '0';
$project->hasProduct = '';
$project->multiple = '';
return $project;
}