* Add feedback files for convert to bug/task/ticket/story.

This commit is contained in:
chaideqing
2023-12-07 06:21:56 +00:00
parent c430fcca5b
commit 8e1efb0012
4 changed files with 24 additions and 3 deletions
+9 -1
View File
@@ -255,7 +255,15 @@ foreach(explode(',', $config->task->create->requiredFields) as $field)
</tr>
<tr>
<th><?php echo $lang->files;?></th>
<td colspan='3'><?php echo $this->fetch('file', 'buildform');?></td>
<td colspan='3'>
<?php
if(isset($sourceFiles))
{
echo $this->fetch('file', 'printFiles', array('files' => $sourceFiles, 'fieldset' => 'false', 'object' => null, 'method' => 'edit', 'showDelete' => true, 'showEdit' => false));
}
echo $this->fetch('file', 'buildform');
?>
</td>
</tr>
<?php
$hiddenEstStarted = strpos(",$showFields,", ',estStarted,') === false ? 'hidden' : '';