Quote:
Originally Posted by Kolbi
I found another 2 uncached templates:
Code:
Uncached templates: dto_garage_popup_menu (1)
Uncached templates: dto_garage_popup_menubit (1)
While viewing a PM.
|
If I'm not mistaken these are the same templates you reported a couple of weeks ago correct? If so, the change to the global_start plugin you mentioned will resolve this or, alternatively, you can edit our cache_templates plugin. To do this:
Look for
PHP Code:
else if(THIS_SCRIPT == 'usercp' OR THIS_SCRIPT == 'dto_garage' OR
THIS_SCRIPT == 'private')
{
$globaltemplates = array_merge($globaltemplates, array(
'dto_garage_usercp',
));
}
and change to
PHP Code:
else if(THIS_SCRIPT == 'usercp' OR THIS_SCRIPT == 'dto_garage' OR
THIS_SCRIPT == 'private')
{
$globaltemplates = array_merge($globaltemplates, array(
'dto_garage_usercp','dto_garage_popup_menu','dto_garage_popup_menubit'
));
}
Mark