* Fix Bug#1388.

This commit is contained in:
滔哥
2018-01-16 10:39:59 +08:00
parent e55e97d7ff
commit 1a00522c13
+3 -1
View File
@@ -72,12 +72,14 @@
<fieldset>
<legend><?php echo $lang->task->legendBasic;?></legend>
<table class='table table-form'>
<?php if(empty($task->parent)):?>
<tr>
<th class='w-80px'><?php echo $lang->task->project;?></th>
<td><?php echo html::select('project', $projects, $task->project, 'class="form-control chosen" onchange="loadAll(this.value)"');?></td>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->task->module;?></th>
<th class='w-80px'><?php echo $lang->task->module;?></th>
<td id="moduleIdBox"><?php echo html::select('module', $modules, $task->module, 'class="form-control chosen" onchange="loadModuleRelated()"');?></td>
</tr>
<?php if($config->global->flow != 'onlyTask' and $project->type != 'ops'):?>