Here's another tip/tweak. Makes it so that new reply composition screen isn't in WYSIWYG mode... it's just the simple box. (but auto-quoting still works)
Thanks to dartho for the
assist, I've done the same in this style and it works fine.
Changing your newreply template to the following:
Code:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
</head>
<body>
$header
$navbar
<div class="titlebg">Reply To: $threadinfo[title]</div>
<form action="newreply.php" method="post">
<div>
$vbphrase[message]:<br />
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="15" style="width:100%; height:100px">$newpost[message]</textarea>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="postreply" />
<input type="hidden" name="t" value="$threadid" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="submit" class="button" name="sbutton" value="$vbphrase[submit_reply]" accesskey="s" tabindex="1" />
</div>
</form>
$footer
</body>
</html>