This makes the server error out, when clean urls aren't (can't be) enabled.

Easy to reproduce:
1) go to http://tortoisesvn.sourceforge.net
2) Search for "ssh"
3) klick on "SSH" in "matching categories".

The URL is http://tortoisesvn.sourceforge.net/taxonomy/term/11 where I expect it to be http://tortoisesvn.sourceforge.net/?q=taxonomy/term/11

Comments

nedjo’s picture

Status: Active » Fixed

Thanks for pointing this out, now fixed in head (and I'll update 4.6 when I get a chance). Issue was in the following line

      $find[$term->tid]['link'] = 'taxonomy/term/' . $term->tid;

which needed to be changed to

      $find[$term->tid]['link'] = url('taxonomy/term/' . $term->tid);
luebbe’s picture

Thanks, applied your fix

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Status: Fixed » Closed (fixed)