Make WordPress Core

Ticket #24054: 24054_is-member.patch

File 24054_is-member.patch, 1.4 KB (added by Viper007Bond, 12 years ago)

Adds only "comment-author-is-site-member" class incase we don't want to expose roles

  • wp-includes/comment-template.php

     
    306306        // Get the comment type (comment, trackback),
    307307        $classes[] = ( empty( $comment->comment_type ) ) ? 'comment' : $comment->comment_type;
    308308
    309         // If the comment author has an id (registered), then print the log in name
    310         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
    312312                $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
    314320                // For comment authors who are the author of the post
    315321                if ( $post = get_post($post_id) ) {
    316                         if ( $comment->user_id === $post->post_author )
     322                        if ( $comment->user_id === $post->post_author ) {
    317323                                $classes[] = 'bypostauthor';
     324                        }
    318325                }
    319326        }
    320327