Do not encode prefix and suffix attributes of macros.

This commit is contained in:
hns 2001-11-27 14:15:41 +00:00
parent aec53f4425
commit 5da1156043

View file

@ -372,9 +372,9 @@ public class Skin {
String encoding = (String) parameters.get ("encoding"); String encoding = (String) parameters.get ("encoding");
String prefix = (String) parameters.get ("prefix"); String prefix = (String) parameters.get ("prefix");
String suffix = (String) parameters.get ("suffix"); String suffix = (String) parameters.get ("suffix");
res.write (encode (prefix, encoding)); res.write (prefix);
res.write (encode (text, encoding)); res.write (encode (text, encoding));
res.write (encode (suffix, encoding)); res.write (suffix);
} }
/** /**