diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-04-29 18:43:57 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-04-29 18:43:57 -0400 |
commit | 9fa8f63d25a1bd1b2ce17c5dc610680aefa290fe (patch) | |
tree | 7348ec8646c4f08ad4515aa15e2cdd689b005f10 /app/Template/column | |
parent | a34f83fb3044b51a8cb519a97ad27853ef4a068a (diff) |
Fixed improper Markdown escaping for some tooltips
Diffstat (limited to 'app/Template/column')
-rw-r--r-- | app/Template/column/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/column/index.php b/app/Template/column/index.php index eef176f3..6bc67c5a 100644 --- a/app/Template/column/index.php +++ b/app/Template/column/index.php @@ -28,7 +28,7 @@ <i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Change column position') ?>"></i> <?= $this->text->e($column['title']) ?> <?php if (! empty($column['description'])): ?> - <span class="tooltip" title='<?= $this->text->e($this->text->markdown($column['description'])) ?>'> + <span class="tooltip" title="<?= $this->text->markdownAttribute($column['description']) ?>"> <i class="fa fa-info-circle"></i> </span> <?php endif ?> |