* Fix child task bug.

This commit is contained in:
Yagami
2018-11-14 13:52:02 +08:00
parent 1024ca6376
commit bf1dc7be3f
+1 -1
View File
@@ -103,7 +103,7 @@
<td><span id="storyIdBox"><?php echo html::select('story', $stories, $task->story, "class='form-control chosen'");?></span></td>
</tr>
<?php endif;?>
<?php if($task->parent == 0):?>
<?php if($task->parent == 0 and empty($task->team)):?>
<tr>
<th><?php echo $lang->task->parent;?></th>
<td><?php echo html::select('parent', $tasks, $task->parent, "class='form-control chosen'");?></td>