2
I did.
In admin/index.php file, about line 443, look for this:
Quote:
if( ! $spaw_flag ) {
if( empty( $_GET['useplain'] ) ) {
Then replace the line that puts DHTML editor by this:
Quote:
if( ! $spaw_flag ) {
if( empty( $_GET['useplain'] ) ) {
include XOOPS_ROOT_PATH.'/class/xoopseditor/tinyeditor/formtinyeditortextarea.php';
$t_area = new XoopsFormTinyeditorTextArea (array ('caption'=> _TC_CONTENT , 'name'=> 'message', 'value'=> $message, 'width'=> '550px' , 'height'=> $body_tarea_height )) ;
} else {
Of course, check TinyEditor module is properly installed.