Ticket #24054: 24054_is-member.patch
File 24054_is-member.patch, 1.4 KB (added by , 12 years ago) |
---|
-
wp-includes/comment-template.php
306 306 // Get the comment type (comment, trackback), 307 307 $classes[] = ( empty( $comment->comment_type ) ) ? 'comment' : $comment->comment_type; 308 308 309 // If the comment author has an id (registered) , then print the log in name310 if ( $comment->user_id > 0 && $user = get_userdata( $comment->user_id) ) {311 // For all registered users , 'byuser'309 // If the comment author has an id (registered) 310 if ( $comment->user_id > 0 && $user = get_userdata( $comment->user_id ) ) { 311 // For all registered users 312 312 $classes[] = 'byuser'; 313 $classes[] = 'comment-author-' . sanitize_html_class($user->user_nicename, $comment->user_id); 313 $classes[] = 'comment-author-' . sanitize_html_class( $user->user_nicename, $comment->user_id ); 314 315 // For all members of this blog (useful for multi-site) 316 if ( is_user_member_of_blog( $comment->user_id ) ) { 317 $classes[] = 'comment-author-is-site-member'; 318 } 319 314 320 // For comment authors who are the author of the post 315 321 if ( $post = get_post($post_id) ) { 316 if ( $comment->user_id === $post->post_author ) 322 if ( $comment->user_id === $post->post_author ) { 317 323 $classes[] = 'bypostauthor'; 324 } 318 325 } 319 326 } 320 327