Index: /FCKeditor.Java/branches/2.4.x/src/changes/changes.xml
===================================================================
--- /FCKeditor.Java/branches/2.4.x/src/changes/changes.xml	(revision 2694)
+++ /FCKeditor.Java/branches/2.4.x/src/changes/changes.xml	(revision 2695)
@@ -4,6 +4,9 @@
 		<title>Changes</title>
 	</properties>
-
+	
 	<body>
+		<release version="2.4-SNAPSHOT" date="in SVN" description="Minor bugfixes and enhancements.">
+			<action dev="mosipov" type="fix" issue="2608">Removing carriage return invalidate Javascript</action>
+		</release>
 		<release version="2.4.1" date="2008-10-15"
 			description="Minor bugfixes and enhancements.">
Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java	(revision 2694)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java	(revision 2695)
@@ -267,5 +267,5 @@
 
 		strEditor.append("<div>");
-		String encodedValue = escapeXml(value.replaceAll("((\r?\n)+|\t*)", ""));
+		String encodedValue = escapeXml(value);
 
 		if (Compatibility.check(request.getHeader("user-agent"))) {
Index: /FCKeditor.Java/trunk/java-core/src/main/resources/META-INF/FCKeditor.tld
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/resources/META-INF/FCKeditor.tld	(revision 2694)
+++ /FCKeditor.Java/trunk/java-core/src/main/resources/META-INF/FCKeditor.tld	(revision 2695)
@@ -70,7 +70,6 @@
 		<attribute>
 			<description>
-				Passes any content to the FCKeditor document. Use the
-				jsp:attribute tag for large inline content. \r, \n, and
-				\t will be truncated.
+				Passes any content as-is to the FCKeditor document. Use the
+				jsp:attribute tag for large inline content.
 			</description>
 			<name>value</name>
Index: /FCKeditor.Java/trunk/src/changes/changes.xml
===================================================================
--- /FCKeditor.Java/trunk/src/changes/changes.xml	(revision 2694)
+++ /FCKeditor.Java/trunk/src/changes/changes.xml	(revision 2695)
@@ -6,6 +6,5 @@
 
 	<body>
-		<release version="2.5" date="in SVN" description="Decoupling of the server-side storage, localization of user responses and other minor enhancements.">
-			
+		<release version="2.5-SNAPSHOT" date="in SVN" description="Decoupling of the server-side storage, localization of user responses and other minor enhancements.">
 			<!-- <action dev="th-schwarz" type="add" issue="28">Implement Interface for File Browser Connector and Quick Uploader</action> -->
 			<!-- <action dev="mosipov" type="add" issue="2361">Provide interface for locale resolution</action>  -->
@@ -18,6 +17,6 @@
 			<!-- <action type="add" issue="2592">Add more logging statements</action> -->
 			<action dev="mosipov" type="update" issue="2605">Move escapeXml method to a StringBuffer</action>
+			<action dev="mosipov" type="fix" issue="2608">Removing carriage return invalidate Javascript</action>
 			<action dev="mosipov" type="remove" issue="2618">Extract ImageInfo from java-core.jar</action>
-			
 		</release>
 		<release version="2.4.1" date="2008-10-12"
