!257 update ruoyi-common/src/main/java/com/ruoyi/common/utils/html/EscapeUtil.java.

Merge pull request !257 from Hacker/N/A
pull/257/MERGE
若依 2021-01-22 13:43:20 +08:00 committed by Gitee
commit c584de2d8f
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ public class EscapeUtil
// special HTML characters
TEXT['\''] = "'".toCharArray(); // 单引号
TEXT['"'] = """.toCharArray(); // 引号
TEXT['"'] = """.toCharArray(); // 引号
TEXT['&'] = "&".toCharArray(); // &符
TEXT['<'] = "&#60;".toCharArray(); // 小于号
TEXT['>'] = "&#62;".toCharArray(); // 大于号