﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
11179	get_term_link returns a bad link for custom taxonomies	bookchiq	filosofo	"When I create a list of custom taxonomy members in the Loop using get_the_term_list, the links that are created are missing a slash. 

I've tracked this back to the get_term_link function, specifically the following line:
{{{
$termlink = get_option('home') . user_trailingslashit($termlink, 'category');
}}}

As best I can figure, this ''should'' read:
{{{
$termlink = get_option('home') . '/' . user_trailingslashit($termlink, 'category');
}}}

More details on how this shows up...[[BR]]
* My base URL: http://192.168.2.99/wp [[BR]]
* The taxonomy I'm testing: colors[[BR]]
* The term I'm testing: brown[[BR]]
* The bad URL produced by get_term_link: http://192.168.2.99/wpcolors/brown [[BR]]
* The URL that should be produced: http://192.168.2.99/wp/colors/brown"	defect (bug)	closed	normal	2.9	Taxonomy	2.8.5	normal	fixed		bookchiq
