Ticket #2576: 2576.patch
File 2576.patch, 2.8 KB (added by , 6 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/content-single-topic-lead.php
46 46 47 47 <?php bbp_topic_author_link( array( 'sep' => '', 'show_role' => false, 'size' => 100 ) ); ?> 48 48 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> 50 56 51 57 <?php if ( $title = get_user_option( 'title', bbp_get_topic_author_id() ) ) : ?> 52 58 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/loop-single-reply.php
33 33 34 34 <?php bbp_user_nicename( bbp_get_reply_author_id(), array( 'before' => '<p class="bbp-user-nicename">(@', 'after' => ')</p>' ) ); ?> 35 35 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 36 40 <?php if ( $title = get_user_option( 'title', bbp_get_reply_author_id() ) ) : ?> 37 41 38 42 <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
434 434 color: #f00; 435 435 } 436 436 437 .user-is-blocked { 438 color: #f00; 439 } 440 437 441 .create-topic { 438 442 font-size: 0.8rem; 439 443 float: left;