The forum operates in read-only mode. Please head to StackOverflow for support.
Frederico Knabben CKEditor Project Lead and CKSource Owner -- Follow us on: Twitter | Facebook | Google+ | LinkedIn
String encodedValue = escapeXml(value.replaceAll("((\r?\n)+|\t*)", ""));
String encodedValue = (value != null ) ? escapeXml(value.replaceAll("((\r?\n)+|\t*)", "")) : ""
Re: FCKeditor.Java 2.4 released
here's the line
String encodedValue = escapeXml(value.replaceAll("((\r?\n)+|\t*)", ""));I think what's happening is value is coming in as null instead of a string. I think it can be fixed with
String encodedValue = (value != null ) ? escapeXml(value.replaceAll("((\r?\n)+|\t*)", "")) : ""Chad
Re: FCKeditor.Java 2.4 released