From d05c946222e29f4cdd168bba9cf5fb3d76e37920 Mon Sep 17 00:00:00 2001 From: Alex King Date: Mon, 5 Jan 2004 03:14:12 +0000 Subject: [PATCH] using the comments_link_rss function git-svn-id: https://develop.svn.wordpress.org/trunk@720 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-comments.php | 2 +- wp-includes/template-functions.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-comments.php b/wp-comments.php index b04178d8a9..9c45b41ca6 100644 --- a/wp-comments.php +++ b/wp-comments.php @@ -21,7 +21,7 @@

Comments

-

RSS feed for comments on this post.

+

RSS feed for comments on this post.'); ?>

ping_status) { ?>

The URI to TrackBack this entry is:

diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php index d691151648..c10918e709 100644 --- a/wp-includes/template-functions.php +++ b/wp-includes/template-functions.php @@ -1757,8 +1757,8 @@ function comment_time($d='') { function comments_rss_link($link_text='Comments RSS', $commentsrssfilename = 'wp-commentsrss2.php') { global $id; - global $querystring_start, $querystring_equal, $querystring_separator; - $url = $commentsrssfilename.$querystring_start.'p'.$querystring_equal.$id; + global $querystring_start, $querystring_equal, $querystring_separator, $siteurl; + $url = $siteurl.'/'.$commentsrssfilename.$querystring_start.'p'.$querystring_equal.$id; $url = ''.$link_text.''; echo $url; }