<?php
//your template can be found at myspecialtemplate.tpl.php
function _phptemplate_variables
($hook,
$vars =
array()) {
switch ($hook) {
case 'page':
if($vars['node']->type == 'forum'){
$vars['template_files'][] = 'myspecialtemplate';
}
}
return $vars;
}