Fix bad search and replace in old commit

Commit eafaa4b037
This commit is contained in:
Frédéric Guillot 2018-06-06 13:33:50 -07:00
parent 2a299d33d1
commit bce396c1ab
1 changed files with 3 additions and 3 deletions

View File

@ -64,11 +64,11 @@
</td>
<td>
<?php if (! empty($link['task_time_spent'])): ?>
<?= t('%sh spent', n($subtask['time_spent'])) ?>
<?= t('%sh spent', n($link['task_time_spent'])) ?>
<?php endif ?>
<?php if (! empty($subtask['time_spent']) && ! empty($subtask['time_estimated'])): ?>/<?php endif ?>
<?php if (! empty($link['task_time_spent']) && ! empty($link['task_time_estimated'])): ?>/<?php endif ?>
<?php if (! empty($link['task_time_estimated'])): ?>
<?= t('%sh estimated', n($subtask['time_estimated'])) ?>
<?= t('%sh estimated', n($link['task_time_estimated'])) ?>
<?php endif ?>
</td>
</tr>