Do not encode prefix and suffix attributes of macros.
This commit is contained in:
parent
aec53f4425
commit
5da1156043
1 changed files with 2 additions and 2 deletions
|
@ -372,9 +372,9 @@ public class Skin {
|
|||
String encoding = (String) parameters.get ("encoding");
|
||||
String prefix = (String) parameters.get ("prefix");
|
||||
String suffix = (String) parameters.get ("suffix");
|
||||
res.write (encode (prefix, encoding));
|
||||
res.write (prefix);
|
||||
res.write (encode (text, encoding));
|
||||
res.write (encode (suffix, encoding));
|
||||
res.write (suffix);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue