Templates Are Doubly HTML Encoded
Templates are too HTML encoded. It makes it impossible to use BB-Codes to fancy up the Template page, which is supposed to be possible in RC 2. This only occurs for templates where HTML is actually allowed.
Fixed for the next build. In
vault/special_class_postbit.php, find and delete:
Code:
if (
$this->thread['namespaceid'] == TEMPLATE_SPACE AND
$this->bbcode_parser AND
$this->bbcode_parser->options['do_html']
)
{
// XHTML thinks params are CDATA
$this->post['message'] = htmlspecialchars_uni($this->post['message']);
}
This fragment should no longer be necessary, since the template parts are NOPARSEd earlier.