Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit 2b24c98

Browse files
Merge pull request SORMAS-Foundation#3111 from hzi-braunschweig/bugfix-3109-DoNotEscapeI18Properties
SORMAS-Foundation#3109 - do not escape i18 properties
2 parents bec1d19 + 1fc9451 commit 2b24c98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sormas-api/src/main/java/de/symeda/sormas/api/ResourceBundle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public String getString(String key, String defaultValue) {
2222

2323
}
2424

25-
return StringEscapeUtils.escapeHtml4(value);
25+
return value;
2626
}
2727

2828
public String getString(String key) {

0 commit comments

Comments
 (0)