hi,
Yeah you should use the cache_templates hook.vBulletin performs 1 extra MySQL query per unchached template so something like this on hook cache_templates
PHP Code:
$globaltemplates = array_merge($globaltemplates,array(
'modsystem_newthread',
'modsystem_post_settings',
'modsystem_post',
'editor_clientscript',
'editor_css',
'editor_jsoptions_font',
'editor_jsoptions_size',
'editor_toolbar_on',
'memberinfo_block_modsystem',
'memberinfo_modsystem_inblock',
'memberinfo_modsystem_inblock_bit'
));
should do it also the vBulletin editor templates can be "cached" by
PHP Code:
define('GET_EDIT_TEMPLATES',true);