Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 792)
+++ trunk/CHANGELOG	(revision 793)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.7.0 -------------------------------------
+02-Apr-2008 Christian Sommer
+#	fixed bug in Javascript decryption routines of the Output-Filter module
 02-Apr-2008 Matthias Gallas
 #	fixed bug with registration of users are not added to signup group
 02-Apr-2008 Christian Sommer
Index: trunk/wb/modules/output_filter/js/mdcr.js
===================================================================
--- trunk/wb/modules/output_filter/js/mdcr.js	(revision 792)
+++ trunk/wb/modules/output_filter/js/mdcr.js	(revision 793)
@@ -13,11 +13,11 @@
   for(var d=a.length-2; d>-1; d--) {
     if(a.charCodeAt(d) < 97) {
       switch(a.charCodeAt(d)) {
-	case 70: g=64; break;
-	case 90: g=46; break;
-      	case 88: g=95; break;
-      	case 45: g=45; break;
-	default: g=a.charCodeAt(d); break;
+        case 70: g=64; break;
+        case 90: g=46; break;
+        case 88: g=95; break;
+        case 75: g=45; break;
+        default: g=a.charCodeAt(d); break;
       }
       c+=String.fromCharCode(g)
     } else {
