﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
4550	Category RSS feed function broken with URL rewrites	gwagenknecht	markjaquith	"If you have URL rewrite enable the {{{get_category_rss_link}}} function in [source:trunk/wp-includes/feed.php feed.php] returns wrong feed URLs. It forgets to add a slash between the category link and the feed suffix. For example {{{/category/mycategoryname}}} becomes {{{/category/mycategorynamefeed}}} which is wrong.

The fix is quite simple. In feed.php change [source:trunk/wp-includes/feed.php@5755#L137 line 137] from:
{{{
$link = $link . user_trailingslashit('feed', 'feed');
}}}
to:
{{{
$link = trailingslashit($link) . user_trailingslashit('feed', 'feed');
}}}
"	defect (bug)	closed	normal	2.3	General	2.2.1	normal	fixed		gwagenknecht
