Changeset 1481
- Timestamp:
- 2008-02-05 23:40:06 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/tags/ContentTag.java
r1469 r1481 23 23 24 24 EditorTag editorTag = (EditorTag) ancestor; 25 editorTag.setValue(getBodyContent().getString()); 25 String strippedBody = getBodyContent().getString().replaceAll("((\r?\n)+|\t*)", ""); 26 editorTag.setValue(strippedBody); 26 27 27 28 return SKIP_BODY;