* merge after 12.4.1 changes.

This commit is contained in:
z
2020-08-31 15:31:55 +08:00
parent ba32604be6
commit a9df6f3b9c
55 changed files with 364 additions and 146 deletions
+2 -2
View File
@@ -182,7 +182,7 @@
<tr>
<th><?php echo $lang->task->estimate;?></th>
<td>
<?php $disabled = !empty($task->team) ? "disabled='disabled'" : '';?>
<?php $disabled = (!empty($task->team) or $task->parent < 0) ? "disabled='disabled'" : '';?>
<?php echo html::input('estimate', $task->estimate, "class='form-control' {$disabled}");?>
</td>
</tr>
@@ -193,7 +193,7 @@
<tr>
<th><?php echo $lang->task->left;?></th>
<td>
<?php $disabled = !empty($task->team) ? "disabled='disabled'" : '';?>
<?php $disabled = (!empty($task->team) or $task->parent < 0) ? "disabled='disabled'" : '';?>
<?php echo html::input('left', $task->left, "class='form-control' {$disabled}");?>
</td>
</tr>