If you want to use BR elements instead of P elements with TinyMCE editor :
in
class/xoopseditor/tinymce/settings.php
delete line 36 :
"force_p_newlines" => true,
and replace with:
// use BR elements instead of P elements
"forced_root_block" => false,
"force_p_newlines" => false,
"force_br_newlines" => true,
I think it would be nice to definitively change the "P" elements with "BR" so that the line breaks work fine with the modules.
























