| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Acegi
Revision: 3265
Author: luke_t
Date: 29 Aug 2008 08:01:45
Changes:SEC-967: TextUtils.java does not escape ampersand character
http://jira.springframework.org/browse/SEC-967. Added escaping of '&' character
| ... | ...@@ -26,6 +26,8 @@ | |
| 26 | 26 | sb.append("""); |
| 27 | 27 | } else if (c == '\'') { |
| 28 | 28 | sb.append("'"); |
| 29 | } else if (c == '&') { | |
| 30 | sb.append("&"); | |
| 29 | 31 | } else { |
| 30 | 32 | sb.append(c); |
| 31 | 33 | } |