Merge branch 'master_liuhong_27190' into 'master'

*Fix bug #27190.

See merge request easycorp/zentaopms!5516
This commit is contained in:
王怡栋
2022-09-23 05:52:56 +00:00

View File

@@ -123,11 +123,11 @@ foreach(explode(',', $config->task->create->requiredFields) as $field)
<thead>
<tr class='text-center'>
<th class='c-name'><?php echo $lang->task->storyAB;?></th>
<th class='c-pri'><?php echo $lang->task->pri;?></th>
<th class='c-date'><?php echo $lang->task->estStarted;?></th>
<th class='c-date'><?php echo $lang->task->deadline;?></th>
<th class='c-pri <?php if(isset($requiredFields['pri'])) echo 'required';?>'><?php echo $lang->task->pri;?></th>
<th class='c-date <?php if(isset($requiredFields['estStarted'])) echo 'required';?>'><?php echo $lang->task->estStarted;?></th>
<th class='c-date <?php if(isset($requiredFields['deadline'])) echo 'required';?>'><?php echo $lang->task->deadline;?></th>
<th class='c-assignedTo'><?php echo $lang->task->assignedTo;?></th>
<th class='c-estimate'><?php echo $lang->task->estimate;?></th>
<th class='c-estimate <?php if(isset($requiredFields['estimate'])) echo 'required';?>'><?php echo $lang->task->estimate;?></th>
<th class='c-actions'><?php echo $lang->actions;?></th>
</tr>
</thead>