diff options
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java index 153cac50..de0b6f6a 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java @@ -510,7 +510,9 @@ public class ProtocolAuthenticationService implements IProtocolAuthenticationSer * Thymeleaf error in: * th:text="${#messages.msgWithParams('__${msg.errorCode}__', '__${msg.errorParams}__')}" */ - errorCodeParams[i] = params[i].toString().replaceAll("'", "''"); + errorCodeParams[i] = params[i].toString() + .replaceAll("'", "''") + .replaceAll("\\{", "{"); } else { errorCodeParams[i] = "null"; |