the related term should link like this:

http://www.example.com/glossary/term/113

instead is linking like this:

http://www.example.com/glossary/#term113

as you can see the last part is wrong, i guess it has to do with the code (i'm not expert in code), actually with this part of the code:

 if ($relations = taxonomy_get_related($term->tid, "name")) {
    $output .= "<span class=\"glossary-related\">". t("See also") . ": ";
    foreach ($relations as $related) {
      $items[] .= l($related->name, 'glossary/'. $vid, NULL, NULL, "term". $related->tid);
    }
    $output .= implode(', ', $items) . "</span>\n"; // strip trailing comma
    unset($items);
  }
  $output .= "</dd>\n";
  return $output;

As i told you before i'm not expert in code, so may be i'm wrong about the part of the code.
I will apreciate very much a solution about this, also about enabeling latin characters in alphabet bar, as well as not showing unused characters.
TNX very Much

Comments

andrés chandía’s picture

You can check it at :
http://www.chandia.net/glossary/term/11

TNX again

nancydru’s picture

This was actually a code bug. It is fixed in http://drupal.org/node/196362

nancydru’s picture

Status: Active » Closed (duplicate)
nancydru’s picture

Assigned: andrés chandía » nancydru