I have a CCK text field (a textarea) which stores HTML, created via TinyMCE. The problem is that when it comes out in my view, Drupal converts the HTML to text so we see the <ul> tag etc. instead of a list. I am using contemplate and
print "<div>$field_mytext_value</div>";
how can I get the HTML to come out as HTML and not text?
Thanks.