mirror of
https://github.com/discourse/discourse.git
synced 2025-02-18 01:05:00 +00:00
Merge pull request #1745 from ok-harry/master
FIX: Title text should be correctly escaped since we are generating a raw html
This commit is contained in:
commit
30565dcd8f
@ -289,7 +289,7 @@ Handlebars.registerHelper('number', function(property, options) {
|
||||
var result = "<span class='" + classNames + "'";
|
||||
|
||||
if (n !== title) {
|
||||
result += " title='" + title + "'";
|
||||
result += " title='" + Handlebars.Utils.escapeExpression(title) + "'";
|
||||
}
|
||||
result += ">" + n + "</span>";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user