What I would do is use 1 print_output and use the fetch_templates in each if section.
E.g;
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'pagename');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// pre-cache templates used by all actions
$globaltemplates = array(
'navbar',
'flash1',
'STANDARD_ERROR'
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###
if(in_array($bbuserinfo['usergroupid'], array(6,11)))
{
eval('$var1 = "' . fetch_template('template-for-usergroupids-specified') . '";');
}
else
{
eval('$var1 = "' . fetch_template('template-for-everyone-else') . '";');
}
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('main-template-here') . '");');
?>
Then use $var1 in the main-template-here template.