diff options
Diffstat (limited to 'app/Template/board')
-rw-r--r-- | app/Template/board/edit.php | 2 | ||||
-rw-r--r-- | app/Template/board/swimlane.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/board/edit.php b/app/Template/board/edit.php index cf0c28e6..a6df1000 100644 --- a/app/Template/board/edit.php +++ b/app/Template/board/edit.php @@ -13,7 +13,7 @@ <tr> <td class="column-60"><?= $this->e($column['title']) ?> <?php if (! empty($column['description'])): ?> - <span class="column-tooltip" title='<?= $this->markdown($column['description']) ?>'> + <span class="column-tooltip" title='<?= $this->e($this->markdown($column['description'])) ?>'> <i class="fa fa-info-circle"></i> </span> <?php endif ?> diff --git a/app/Template/board/swimlane.php b/app/Template/board/swimlane.php index 4be92e58..744610ab 100644 --- a/app/Template/board/swimlane.php +++ b/app/Template/board/swimlane.php @@ -28,7 +28,7 @@ <?= $this->e($column['title']) ?> <?php if (! empty($column['description'])): ?> - <span class="column-tooltip pull-right" title='<?= $this->markdown($column['description']) ?>'> + <span class="column-tooltip pull-right" title='<?= $this->e($this->markdown($column['description'])) ?>'> <i class="fa fa-info-circle"></i> </span> <?php endif ?> |