* Fix bug 625: Don't let format() encode characters inside executable macro tags.
This commit is contained in:
parent
24cecbaead
commit
3104b4c48a
1 changed files with 1 additions and 1 deletions
|
@ -763,7 +763,7 @@ public final class HtmlEncoder {
|
|||
break;
|
||||
}
|
||||
}
|
||||
if (c < 128) {
|
||||
if (c < 128 || insideMacroTag) {
|
||||
ret.append(c);
|
||||
} else if ((c >= 128) && (c < 256)) {
|
||||
ret.append(transform[c - 128]);
|
||||
|
|
Loading…
Add table
Reference in a new issue