Changeset 1356
- Timestamp:
- 04/10/05 17:43:25 (3 years ago)
- Files:
-
- recent-comments/branches/wp-1.5/recent-comments.php (modified) (2 diffs)
- recent-comments/tags/1.16 (added)
- recent-comments/tags/1.16/read_me.txt (added)
- recent-comments/tags/1.16/recent-comments.php (added)
- recent-comments/trunk/recent-comments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
recent-comments/branches/wp-1.5/recent-comments.php
r901 r1356 4 4 Plugin URI: http://mtdewvirus.com/code/wordpress-plugins/ 5 5 Description: Retrieves a list of the most recent comments. 6 Version: 1.1 56 Version: 1.16 7 7 Author: Nick Momrik 8 8 Author URI: http://mtdewvirus.com/ … … 28 28 if ($comment_style == 1) { 29 29 $post_title = stripslashes($comment->post_title); 30 $output .= $before . '<a href="' . $permalink . '" title="View the entire comment by '; 31 $output .= $comment_author.'">' . $comment_author . '</a> on ' . $post_title . '.' . $after; 30 $output .= $before . comment_author_link() . ' on ' . $post_title . '.' . $after; 32 31 } 33 32 else { recent-comments/trunk/recent-comments.php
r901 r1356 4 4 Plugin URI: http://mtdewvirus.com/code/wordpress-plugins/ 5 5 Description: Retrieves a list of the most recent comments. 6 Version: 1.1 56 Version: 1.16 7 7 Author: Nick Momrik 8 8 Author URI: http://mtdewvirus.com/ … … 28 28 if ($comment_style == 1) { 29 29 $post_title = stripslashes($comment->post_title); 30 $output .= $before . '<a href="' . $permalink . '" title="View the entire comment by '; 31 $output .= $comment_author.'">' . $comment_author . '</a> on ' . $post_title . '.' . $after; 30 $output .= $before . comment_author_link() . ' on ' . $post_title . '.' . $after; 32 31 } 33 32 else {
