However, when i put two lines like
Test line 1
Test line 2
The HTML shows as two paragraphs (what is expected) but when the data is POSTED it comes into the controller as 2 newline separated lines versus the two html paragraphs.
So what's the trick to getting it to POST html code so that the editor is useful? I must be missing something.
The textara tag looks like:
<textarea id="big_commentr" name="big_comment" cols="55" rows="8" class="cm-wysiwyg input-textarea-long">
{$big_comment}
</textarea>
But when $_REQUEST['big_comment'] is received in the controller the string is "Test line 1\nTest line 2" where it should be "<p>Test line 1</p><p>Test line 2</p>".



