Index: glossary.module =================================================================== --- glossary.module (revision 5271) +++ glossary.module (working copy) @@ -854,6 +854,13 @@ $output .= '
'."\n"; if ($tree) { foreach ($tree as $term) { + if (module_exists('i18ntaxonomy')) { + global $language; + // See if this term is in current language + if ($term->language != '' && $term->language != $language->language) { + continue; + } + } $term->synonyms = $synonyms[$term->tid]; // See if it's a new section. // If we're looking for a single letter, see if this is it.