replaced HtmlEncoder.encodeSoft() with HtmlEncoder.encode(). The

former doesn't exist anymore.
This commit is contained in:
hns 2001-09-14 16:02:42 +00:00
parent e1cf1c1f8a
commit 7a6b473e22

View file

@ -357,7 +357,7 @@ public class Skin {
if (encoding == null || text == null)
return text;
if ("html".equalsIgnoreCase (encoding))
return HtmlEncoder.encodeSoft (text);
return HtmlEncoder.encode (text);
if ("xml".equalsIgnoreCase (encoding))
return HtmlEncoder.encodeXml (text);
if ("form".equalsIgnoreCase (encoding))