// ############################### start faq ###############################
if ($action=="faq") {
$templatesused = ""; // Only one template used so load it when called
include("./global.php");
eval("\$faq_headlines = \"".gettemplate('faq_headlines')."\";");
$page = intval($page);
if (!$page)
$page = '';
if($page == "4"){
eval("dooutput(\"".gettemplate("faq_additional")." \");");
} else {
eval("dooutput(\"".gettemplate("faq$page")."\");") ;
}
}
replace the whole part in musc.php
then the $faq_headlines in faq template HAS to work
|