diff options
author | ThibG <thib@sitedethib.com> | 2018-05-12 17:53:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-12 17:53:01 +0200 |
commit | 685cf5599f2116f70b2422d3bf70a079de11e351 (patch) | |
tree | 8b45f7d285dd95bb90b00cd1e54e6a6bf8782478 | |
parent | bd4decb7db1d0be794e0db535332c741477922f8 (diff) | |
parent | cc8d81519e337d0dcc37ca07a6c4e7e300fb9346 (diff) |
Merge pull request #480 from ThibG/glitch-soc/fixes/glitch-soc-bio-escape
Fix glitch-style bio fields incorrect HTML escaping in public profiles
-rw-r--r-- | app/views/accounts/_header.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/accounts/_header.html.haml b/app/views/accounts/_header.html.haml index 652213526..b5653f161 100644 --- a/app/views/accounts/_header.html.haml +++ b/app/views/accounts/_header.html.haml @@ -37,8 +37,8 @@ .account__header__fields - processed_bio[:metadata].each do |i| %dl - %dt.emojify{ title: i[0] }= i[0] - %dd.emojify{ title: i[1] }= i[1] + %dt.emojify{ title: i[0] }!= i[0] + %dd.emojify{ title: i[1] }!= i[1] .details-counters .counter{ class: active_nav_class(short_account_url(account)) } |