Changeset 1356

Show
Ignore:
Timestamp:
04/10/05 17:43:25 (3 years ago)
Author:
MtDewVirus
Message:

Fixed comment_author_link.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • recent-comments/branches/wp-1.5/recent-comments.php

    r901 r1356  
    44Plugin URI: http://mtdewvirus.com/code/wordpress-plugins/ 
    55Description: Retrieves a list of the most recent comments. 
    6 Version: 1.15 
     6Version: 1.16 
    77Author: Nick Momrik 
    88Author URI: http://mtdewvirus.com/ 
     
    2828                  if ($comment_style == 1) { 
    2929                        $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; 
    3231                  } 
    3332                  else { 
  • recent-comments/trunk/recent-comments.php

    r901 r1356  
    44Plugin URI: http://mtdewvirus.com/code/wordpress-plugins/ 
    55Description: Retrieves a list of the most recent comments. 
    6 Version: 1.15 
     6Version: 1.16 
    77Author: Nick Momrik 
    88Author URI: http://mtdewvirus.com/ 
     
    2828                  if ($comment_style == 1) { 
    2929                        $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; 
    3231                  } 
    3332                  else {