vB2:
PHP Code:
$templatesused = 'foo1,foo2,foo3';
$templatesused .= ',foo3,foo4,foo5';
vB3:
PHP Code:
// pre-cache templates used by all actions
$globaltemplates = array(
'PM',
'pm_messagelist_userbit',
'pm_messagelistbit',
'pm_messagelist_emptyfolder',
'pm_receipts',
'pm_receiptsbit',
'usercpmenu',
'usercpnav'
);
// pre-cache templates used by specific actions
$actiontemplates = array(
'editfolders' => array(
'pm_editfolderbit'
),
'showpm' => array(
'postbit',
'postbit_online',
'postbit_reputation',
'postbit_buttons',
'postbit_userinfo',
'postbit_bbcode_code',
'postbit_bbcode_html',
'postbit_bbcode_php',
)
);