Changeset 9764
- Timestamp:
- 11/18/2008 10:06:51 PM (17 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
-
comment-template.php (modified) (2 diffs)
-
pluggable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r9667 r9764 140 140 $return = $author; 141 141 else 142 $return = "<a href='$url' rel='external nofollow' >$author</a>";142 $return = "<a href='$url' rel='external nofollow' class='url'>$author</a>"; 143 143 return apply_filters('get_comment_author_link', $return); 144 144 } … … 1150 1150 <div class="comment-author vcard"> 1151 1151 <?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?> 1152 <?php printf(__('<cite >%s</cite> Says:'), get_comment_author_link()) ?>1152 <?php printf(__('<cite class="fn">%s</cite> Says:'), get_comment_author_link()) ?> 1153 1153 </div> 1154 1154 <?php if ($comment->comment_approved == '0') : ?> -
trunk/wp-includes/pluggable.php
r9728 r9764 1536 1536 $out .= "&r={$rating}"; 1537 1537 1538 $avatar = "<img alt='{$safe_alt}' src='{$out}' class='avatar avatar-{$size} ' height='{$size}' width='{$size}' />";1538 $avatar = "<img alt='{$safe_alt}' src='{$out}' class='avatar avatar-{$size} photo' height='{$size}' width='{$size}' />"; 1539 1539 } else { 1540 $avatar = "<img alt='{$safe_alt}' src='{$default}' class='avatar avatar-{$size} avatar-default' height='{$size}' width='{$size}' />";1540 $avatar = "<img alt='{$safe_alt}' src='{$default}' class='avatar avatar-{$size} photo avatar-default' height='{$size}' width='{$size}' />"; 1541 1541 } 1542 1542
Note: See TracChangeset
for help on using the changeset viewer.