diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-10-16 13:46:18 -0700 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-10-16 13:46:18 -0700 |
commit | a254b80045a94ad34da07307cf2f2a8023dacc03 (patch) | |
tree | ab97ea4fd112b9dbe57f79baef8166cf83af58d5 /app/Template/board | |
parent | 47d9c0f1279d6c42f130684f5081fe3c70bafb67 (diff) |
Add attribute title to external links
Diffstat (limited to 'app/Template/board')
-rw-r--r-- | app/Template/board/tooltip_external_links.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/board/tooltip_external_links.php b/app/Template/board/tooltip_external_links.php index a9f1fc7f..2c287adf 100644 --- a/app/Template/board/tooltip_external_links.php +++ b/app/Template/board/tooltip_external_links.php @@ -11,7 +11,7 @@ <?= $link['type'] ?> </td> <td> - <a href="<?= $link['url'] ?>" target="_blank"><?= $this->text->e($link['title']) ?></a> + <a href="<?= $link['url'] ?>" title="<?= $this->text->e($link['url']) ?>" target="_blank"><?= $this->text->e($link['title']) ?></a> </td> <td> <?= $this->text->e($link['dependency_label']) ?> |