Changeset 720
- Timestamp:
- 01/05/2004 03:14:12 AM (22 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
wp-comments.php (modified) (1 diff)
-
wp-includes/template-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-comments.php
r719 r720 22 22 <h2 id="comments">Comments</h2> 23 23 24 <p>< a href="<?php echo $siteurl; ?>/wp-commentsrss2.php?p=<?php echo $id; ?>"><abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.</a></p>24 <p><?php comments_rss_link('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.'); ?></p> 25 25 26 26 <?php if ('open' == $post->ping_status) { ?> -
trunk/wp-includes/template-functions.php
r717 r720 1758 1758 function comments_rss_link($link_text='Comments RSS', $commentsrssfilename = 'wp-commentsrss2.php') { 1759 1759 global $id; 1760 global $querystring_start, $querystring_equal, $querystring_separator ;1761 $url = $ commentsrssfilename.$querystring_start.'p'.$querystring_equal.$id;1760 global $querystring_start, $querystring_equal, $querystring_separator, $siteurl; 1761 $url = $siteurl.'/'.$commentsrssfilename.$querystring_start.'p'.$querystring_equal.$id; 1762 1762 $url = '<a href="'.$url.'">'.$link_text.'</a>'; 1763 1763 echo $url;
Note: See TracChangeset
for help on using the changeset viewer.