diff options
Diffstat (limited to 'app/Template/task/details.php')
-rw-r--r-- | app/Template/task/details.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/task/details.php b/app/Template/task/details.php index 8d22af52..202991d2 100644 --- a/app/Template/task/details.php +++ b/app/Template/task/details.php @@ -161,7 +161,9 @@ </div> <?php if (! empty($task['external_uri']) && ! empty($task['external_provider'])): ?> - <external-task-view url="<?= $this->url->href('ExternalTaskViewController', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])) ?>"></external-task-view> + <?= $this->app->component('external-task-view', array( + 'url' => $this->url->href('ExternalTaskViewController', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])), + )) ?> <?php endif ?> <?php if ($editable && empty($task['date_started'])): ?> |