Changeset 1481

Show
Ignore:
Timestamp:
2008-02-05 23:40:06 (10 months ago)
Author:
mosipov
Message:

stripped \t\r\n from body

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/tags/ContentTag.java

    r1469 r1481  
    2323 
    2424                EditorTag editorTag = (EditorTag) ancestor; 
    25                 editorTag.setValue(getBodyContent().getString()); 
     25                String strippedBody = getBodyContent().getString().replaceAll("((\r?\n)+|\t*)", ""); 
     26                editorTag.setValue(strippedBody); 
    2627 
    2728                return SKIP_BODY;