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

@@ -42,7 +42,7 @@
<?= $this->a($this->e($project['name']), 'project', '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->markdown($project['description']) ?>'>
<i class="fa fa-info-circle"></i>
</span>
<?php endif ?>