Use single quotes for attributes with Markdown/HTML content to avoid browser bugs

This commit is contained in:
Frederic Guillot
2015-02-24 21:36:50 -05:00
parent 4fc518b2c9
commit c4aed0e749
6 changed files with 9 additions and 9 deletions

View File

@@ -50,7 +50,7 @@
<td>
<?= $this->e($column['title']) ?>
<?php if (! empty($column['description'])): ?>
<span class="column-tooltip" title="<?= $this->markdown($column['description']) ?>">
<span class="column-tooltip" title='<?= $this->markdown($column['description']) ?>'>
<i class="fa fa-info-circle"></i>
</span>
<?php endif ?>