Feed link fix for bug 775. Hat tip: Kafkaesqui

git-svn-id: http://svn.automattic.com/wordpress/trunk@2181 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rboren 2005-02-01 02:01:38 +00:00
parent a90237eb16
commit 85e1235b65
1 changed files with 2 additions and 2 deletions

View File

@ -161,8 +161,8 @@ function get_feed_link($feed='rss2') {
$feed = '';
$permalink = str_replace('%feed%', $feed, $permalink);
$output = get_settings('home') . "/$permalink/";
$output = preg_replace('#/+#', '/', $output);
$permalink = preg_replace('#/+#', '/', "/$permalink/");
$output = get_settings('home') . $permalink;
} else {
if ( false !== strpos($feed, 'comments_') )
$feed = str_replace('comments_', 'comments', $feed);