Making WordPress.org

Ticket #2576: 2576.patch

File 2576.patch, 2.8 KB (added by Clorith, 6 years ago)
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/content-single-topic-lead.php

     
    4646
    4747                                <?php bbp_topic_author_link( array( 'sep' => '', 'show_role' => false, 'size' => 100 ) ); ?>
    4848
    49                                 <?php bbp_user_nicename( bbp_get_topic_author_id(), array( 'before' => '<p class="bbp-user-nicename">(@', 'after' => ')</p><br />' ) ); ?>
     49                                <?php bbp_user_nicename( bbp_get_topic_author_id(), array( 'before' => '<p class="bbp-user-nicename">(@', 'after' => ')</p>' ) ); ?>
     50
     51                                <?php if ( current_user_can( 'moderate', bbp_get_topic_id() ) && 'bbp_blocked' === bbp_get_user_role( bbp_get_topic_author_id() ) ) : ?>
     52                                        <span class="user-is-blocked">[<?php _e( 'This user is blocked', 'wporg-support' ); ?>]</span>
     53                                <?php endif; ?>
     54
     55                                <br>
    5056
    5157                                <?php if ( $title = get_user_option( 'title', bbp_get_topic_author_id() ) ) : ?>
    5258
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/loop-single-reply.php

     
    3333
    3434                <?php bbp_user_nicename( bbp_get_reply_author_id(), array( 'before' => '<p class="bbp-user-nicename">(@', 'after' => ')</p>' ) ); ?>
    3535
     36                <?php if ( current_user_can( 'moderate', bbp_get_reply_topic_id() ) && 'bbp_blocked' === bbp_get_user_role( bbp_get_reply_author_id() ) ) : ?>
     37                        <span class="user-is-blocked">[<?php _e( 'This user is blocked', 'wporg-support' ); ?>]</span>
     38                <?php endif; ?>
     39
    3640                <?php if ( $title = get_user_option( 'title', bbp_get_reply_author_id() ) ) : ?>
    3741
    3842                        <p class="bbp-author-title"><?php echo esc_html( $title ); ?></p>
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/sass/site/_bbpress.scss

     
    434434                        color: #f00;
    435435                }
    436436
     437                .user-is-blocked {
     438                        color: #f00;
     439                }
     440
    437441                .create-topic {
    438442                        font-size: 0.8rem;
    439443                        float: left;