Helpers refactoring
This commit is contained in:
@@ -24,13 +24,13 @@
|
||||
<?php if ($task['recurrence_parent']): ?>
|
||||
<li>
|
||||
<?= t('This task has been created by: ') ?>
|
||||
<?= $this->a('#'.$task['recurrence_parent'], 'task', 'show', array('task_id' => $task['recurrence_parent'], 'project_id' => $task['project_id'])) ?>
|
||||
<?= $this->url->link('#'.$task['recurrence_parent'], 'task', 'show', array('task_id' => $task['recurrence_parent'], 'project_id' => $task['project_id'])) ?>
|
||||
</li>
|
||||
<?php endif ?>
|
||||
<?php if ($task['recurrence_child']): ?>
|
||||
<li>
|
||||
<?= t('This task has created this child task: ') ?>
|
||||
<?= $this->a('#'.$task['recurrence_child'], 'task', 'show', array('task_id' => $task['recurrence_child'], 'project_id' => $task['project_id'])) ?>
|
||||
<?= $this->url->link('#'.$task['recurrence_child'], 'task', 'show', array('task_id' => $task['recurrence_child'], 'project_id' => $task['project_id'])) ?>
|
||||
</li>
|
||||
<?php endif ?>
|
||||
<?php endif ?>
|
||||
|
||||
Reference in New Issue
Block a user