function garland_preprocess_comment_wrapper
Add a "Comments" heading above comments except on forum pages.
Archivo
- drupal-6.x/
themes/ garland/ template.php, line 54
Código
function garland_preprocess_comment_wrapper(&$vars) {
if ($vars['content'] && $vars['node']->type != 'forum') {
$vars['content'] = '<h2 class="comments">' . t('Comments') . '</h2>' . $vars['content'];
}
}