diff options
| author | winter | 2025-02-24 18:47:50 +0000 |
|---|---|---|
| committer | winter | 2025-02-24 18:47:50 +0000 |
| commit | 2bd4a086b0f50b1b88faf846da91267290ca4b07 (patch) | |
| tree | 22ea5b78cd5dbebafa2d57f0f95f522cfa5dc6fc /templates | |
| parent | b1dc1cf89ffa49f20ae9bd2880c5152fbc6e00a3 (diff) | |
don't double escape notification content
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/notification.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/notification.php b/templates/notification.php index d787f5e..0b105bd 100644 --- a/templates/notification.php +++ b/templates/notification.php @@ -18,7 +18,7 @@ <?php if ($titleLink != null): ?> </a> <?php endif; ?> - <span class="body"><?= htmlspecialchars($body) ?></span> + <span class="body"><?= htmlspecialchars($body, double_encode: false) ?></span> </div> <div hidden class="notifier" <?php if ($unread ?? false): ?> _=" on load |
