+
+2006-09-02 Martin Kutschker <martin.t.kutschker@blackbox.net>
+
+ * Fixed #4141: config.spamProtectEmailAddresses does not encrypt "9" digits correctly
+
2006-09-01 Ingmar Schlecht <ingmar@typo3.org>
* Fixed #529: Committed new TSConfig Help data. Thanks a lot to Stephane Schitter for extracting the new data from the references!
var len = enc.length;
for(var i=0; i < len; i++) {
var n = enc.charCodeAt(i);
- if (n >= 0x2B && n <= 0x39) {
+ if (n >= 0x2B && n <= 0x3A) {
dec += decryptCharcode(n,0x2B,0x3A,offset); // 0-9 . , - + / :
} else if (n >= 0x40 && n <= 0x5A) {
dec += decryptCharcode(n,0x40,0x5A,offset); // A-Z @