3515667-escaping-issue-in: Resolving escaping issue.
2 unresolved threads
Closes #3515667
Merge request reports
Activity
added 1 commit
- 52e80bc9 - 3515667-escaping-issue-in: Fixes escaping issue.
96 97 [ 97 98 '#type' => 'html_tag', 98 99 '#tag' => $script_tag, 99 '#value' => $value, 100 ], 100 '#value' => Markup::create(htmlspecialchars_decode($value)), ], changed this line in version 2 of the diff
158 158 $attachments['#attached']['html_head'][$i][0] = [ 159 159 '#type' => 'html_tag', 160 160 '#tag' => $style_tag, 161 '#value' => $value, 162 ]; 161 '#value' => Markup::create(htmlspecialchars_decode($value)), ]; changed this line in version 2 of the diff
added 1 commit
- 97b22a96 - 3515667_4# Fixed special character html encoading issue.
Please register or sign in to reply