If your using the action templates as shown in the original post:
PHP Code:
$actiontemplates = array(
'small' => array(
'other'
)
);
along with:
PHP Code:
if (empty($_REQUEST['do']))
{
$_REQUEST['do'] = 'small';
}
Then you will need to set a default action template like below:
PHP Code:
$actiontemplates = array(
'small' => array(
'other'
)
);
$actiontemplates['none'] = &$actiontemplates['small'];
This should prevent uncached templates on initial page visit if $_REQUEST['do'] is empty. Just change "small" in the last line to the default template array such as "home" or "main".