mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:06:26 +08:00
FIX: Avoid double-encoding featured topic title in user card (#20739)
a373bf2a
updated the behavior of `replace-emoji` so that the input is treated as unsafe-by-default. `fancy_title` is already escaped, so we need to mark it as html-safe to avoid it being double-escaped.
There is no need to html-safe the result of replace-emoji - it's already done as part of the helper.
This commit is contained in:
parent
80367b827a
commit
597316125f
|
@ -241,8 +241,8 @@
|
|||
this.user.featured_topic.slug
|
||||
this.user.featured_topic.id
|
||||
}}
|
||||
>{{html-safe
|
||||
(replace-emoji this.user.featured_topic.fancy_title)
|
||||
>{{replace-emoji
|
||||
(html-safe this.user.featured_topic.fancy_title)
|
||||
}}</LinkTo>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user