Server Validation failure issue in HTML Editor
Using Server Validation from CSS Form builder or Form Toolkit on an HTML Editor instance, when validation fails, the HTMLEditor content will be encoded.
to fix the issue, edit the webassist/form_validation/wavt_validatedform_php.php file. change:
return str_replace("<","<",str_replace(">",">",str_replace('"',""",$retVal)));
to:
return htmlspecialchars($retVal);

  That code was implemented to prevent Cross Site Scripting attacks. by  removing it from all future instances of using the Server Validations  would make your forms vulnerable to Cross Site Scripting.  

