cvs diff: Diffing themes/garland Index: themes/garland/node.tpl.php =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/node.tpl.php,v retrieving revision 1.9 diff -u -p -r1.9 node.tpl.php --- themes/garland/node.tpl.php 18 Feb 2009 14:28:25 -0000 1.9 +++ themes/garland/node.tpl.php 5 Apr 2009 02:31:56 -0000 @@ -20,12 +20,18 @@
-
+
+ ' . $related_terms . ''; + print $terms; ?>
- + Index: themes/garland/template.php =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/template.php,v retrieving revision 1.20 diff -u -p -r1.20 template.php --- themes/garland/template.php 20 Jan 2009 03:18:41 -0000 1.20 +++ themes/garland/template.php 5 Apr 2009 02:31:57 -0000 @@ -26,6 +26,11 @@ function garland_comment_wrapper($conten } } +function garland_preprocess_node(&$vars) { + $vars['related_terms'] = t('related terms'); + $vars['related_pages'] = t('related pages'); +} + /** * Override or insert variables into the page template. */