diff options
Diffstat (limited to 'templates/task_show.php')
-rw-r--r-- | templates/task_show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/task_show.php b/templates/task_show.php index 97ce7f8c..b16a20a0 100644 --- a/templates/task_show.php +++ b/templates/task_show.php @@ -72,7 +72,7 @@ <h2><?= t('Description') ?></h2> <?php if ($task['description']): ?> <article class="markdown task-show-description"> - <?= Helper\markdown($task['description']) ?: t('There is no description.') ?> + <?= Helper\parse($task['description']) ?: t('There is no description.') ?> </article> <?php else: ?> <form method="post" action="?controller=task&action=description&task_id=<?= $task['id'] ?>" autocomplete="off"> |