Big fan of this mod for a while now Abe1, thanks.
One thing I recently noticed however is that the form template isn't cached when viewing newthread.php?do=form. As we all know, this causes an unnecessary query on the server.
This can be fixed by adding the following plugin to the product at hook location: cache_templates
PHP Code:
if (THIS_SCRIPT == 'newthread' AND $_REQUEST['do'] == 'form')
{
// Cache template for Abe1 Form Hack
$globaltemplates[] = 'form';
$globaltemplates[] = 'formanswers';
}