aboutsummaryrefslogtreecommitdiff
path: root/templates/mail/notification_html.php
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2022-11-21 09:28:21 +0000
committerDavid Siegfried <david.siegfried@uni-vechta.de>2022-11-21 09:28:21 +0000
commitd07281006d833f2d0e4e40623ce8835863ea9fe8 (patch)
treef7bb0821320d8bb954e890936f71075947efad7a /templates/mail/notification_html.php
parentdb86653a678b8eefdb189dbd388293b0ad3d546d (diff)
the Icon and Button APIs already escape attributes, fixes #1797
Closes #1797 Merge request studip/studip!1179
Diffstat (limited to 'templates/mail/notification_html.php')
-rw-r--r--templates/mail/notification_html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/mail/notification_html.php b/templates/mail/notification_html.php
index 77a71b6..5060fb7 100644
--- a/templates/mail/notification_html.php
+++ b/templates/mail/notification_html.php
@@ -35,7 +35,7 @@
<a href="<?= URLHelper::getLink($module['url'], ['sso' => $sso]) ?>"><?= htmlReady($module['text']) ?></a>
</td>
<td>
- <a href="<?= URLHelper::getLink($module['url'], ['sso' => $sso]) ?>"><?= $module['icon']->asImg(['title' => htmlReady($module['text'])]) ?></a>
+ <a href="<?= URLHelper::getLink($module['url'], ['sso' => $sso]) ?>"><?= $module['icon']->asImg(['title' => $module['text']]) ?></a>
</td>
</tr>
<? endforeach ?>