Escape markdown code in column tooltips.

This is needed to avoid issues when the code contains quotes.
This commit is contained in:
Francois Ferrand
2015-03-04 17:03:04 +01:00
parent 23f8f2c576
commit 6696484bd0
6 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@
<?= $this->a($this->e($project['name']), 'board', 'show', array('project_id' => $project['id'])) ?>
<?php if (! empty($project['description'])): ?>
<span class="column-tooltip" title='<?= $this->markdown($project['description']) ?>'>
<span class="column-tooltip" title='<?= $this->e($this->markdown($project['description'])) ?>'>
<i class="fa fa-info-circle"></i>
</span>
<?php endif ?>