git-svn-id: https://develop.svn.wordpress.org/trunk@2589 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-05-09 10:59:36 +00:00
parent 58917f8be1
commit c9b76b0cf4
1 changed files with 2 additions and 2 deletions

View File

@ -110,9 +110,9 @@ function get_category_rss_link($echo = false, $cat_ID, $category_nicename) {
$permalink_structure = get_settings('permalink_structure');
if ('' == $permalink_structure) {
$link = get_settings('home') . '?feed=rss2&cat=' . $category_id;
$link = get_settings('home') . '?feed=rss2&cat=' . $cat_ID;
} else {
$link = get_category_link($category_id);
$link = get_category_link($cat_ID);
$link = $link . "feed/";
}