Can someone help me with this error log message?
This is the code that calls the CuteEditor:
$cEditor = new CuteEditor();
$cEditor->ID = 'phNotes';
$cEditor->AutoConfigure = CoachFlex;
$cEditor->FilesPath = "core/CuteEditor_Files";
$cEditor->ShowCodeViewToolBar = false;
$cEditor->ThemeType = "Office2003_BlueTheme";
$cEditor->UseFontTags=false;
$cEditor->Width = "100%";
$cEditor->EditorOnPaste = "PastePureText";
$cEditor->EditorBodyStyle = "font: normal 0.75em Arial;";
$cEditor->BreakElement="Br";
$cEditor->EnableStripScriptTags=true;
$cEditor->ShowPreviewMode = false;
$cEditor->ShowTagSelecter = false;
$cEditor->MaxHTMLLength = 65535;
$cEditor->Draw();
$cEditor = null;
If you can let me know how to stop this error from filling up my error_log that would be great :)
Thanks!