mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 11:48:26 -06: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 + "'";
|
var result = "<span class='" + classNames + "'";
|
||||||
|
|
||||||
if (n !== title) {
|
if (n !== title) {
|
||||||
result += " title='" + title + "'";
|
result += " title='" + Handlebars.Utils.escapeExpression(title) + "'";
|
||||||
}
|
}
|
||||||
result += ">" + n + "</span>";
|
result += ">" + n + "</span>";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user