Quote:
Originally Posted by jpwilliams
I'm having a problem with broken links in my tag cloud. The weird thing is, one link in the cloud works perfectly, but the rest are broken.
My site is www.blickees.com. If you click on the "donovan mcnabb" tag it goes to:
http://www.blickees.com/tags.php?tag=donovan+mcnabb
However every other tag goes to:
http://www.blickees.com/<tag>
Any ideas?
|
Fixed this problem by changing:
$url = $vbulletin->options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);
TO:
$url = $vbulletin->options['homeurl'].'/'.'tags.php?tag='.urlencode($tag['tagtext']);