Escape message for notifications

This commit is contained in:
Philipp 2023-05-14 20:31:20 +02:00
parent d272cecd55
commit e998c059b6
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
2 changed files with 29 additions and 1 deletions

View file

@ -134,6 +134,6 @@ class Notify extends BaseEntity
*/
public static function formatMessage(string $name, string $message): string
{
return str_replace('{0}', '<span class="contactname">' . strip_tags(BBCode::convert($name)) . '</span>', $message);
return str_replace('{0}', '<span class="contactname">' . strip_tags(BBCode::convert($name)) . '</span>', htmlspecialchars($message));
}
}