MyBB Community Forums

Full Version: How do I display the Text editor?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm working on a downloads addon for a client, and everything works great, but I can't for the life of me figure out how to get the text editor MyBB uses to show up for the description area. Any help?
codebuttons ?
PHP File
$codebuttons = build_mycode_inserter();

Template
<fieldset class="trow1">
<legend><strong>Description:</strong></legend>
<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td class="trow1">
<textarea rows="15" cols="70" id="message" name="message"></textarea>
{$codebuttons}
</td>
</tr>
</table>
</fieldset>
Thanks a million!