http://jira.springframework.org/browse/SEC-967. Added escaping of '&' character
@ -26,6 +26,8 @@ public abstract class TextUtils {
sb.append(""");
} else if (c == '\'') {
sb.append("'");
} else if (c == '&') {
sb.append("&");
} else {
sb.append(c);
}