replaced HtmlEncoder.encodeSoft() with HtmlEncoder.encode(). The
former doesn't exist anymore.
This commit is contained in:
parent
e1cf1c1f8a
commit
7a6b473e22
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ public class Skin {
|
||||||
if (encoding == null || text == null)
|
if (encoding == null || text == null)
|
||||||
return text;
|
return text;
|
||||||
if ("html".equalsIgnoreCase (encoding))
|
if ("html".equalsIgnoreCase (encoding))
|
||||||
return HtmlEncoder.encodeSoft (text);
|
return HtmlEncoder.encode (text);
|
||||||
if ("xml".equalsIgnoreCase (encoding))
|
if ("xml".equalsIgnoreCase (encoding))
|
||||||
return HtmlEncoder.encodeXml (text);
|
return HtmlEncoder.encodeXml (text);
|
||||||
if ("form".equalsIgnoreCase (encoding))
|
if ("form".equalsIgnoreCase (encoding))
|
||||||
|
|
Loading…
Add table
Reference in a new issue