Changeset 11805
- Timestamp:
- 04/27/2022 11:16:48 AM (2 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-committers.php
r9002 r11805 57 57 <?php echo get_avatar( $committer->ID, 32 ); ?> 58 58 <a href="<?php echo esc_url( "https://profiles.wordpress.org/{$committer->user_nicename}/" ); ?>"> 59 <?php echo Template::encode( $committer->display_name ); ?>59 <?php echo Template::encode( $committer->display_name ?: $committer->user_nicename ); ?> 60 60 </a><br> 61 61 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-support-reps.php
r9002 r11805 60 60 <?php echo get_avatar( $support_rep->ID, 32 ); ?> 61 61 <a href="<?php echo esc_url( "https://profiles.wordpress.org/{$support_rep->user_nicename}/" ); ?>"> 62 <?php echo Template::encode( $support_rep->display_name ); ?>62 <?php echo Template::encode( $support_rep->display_name ?: $support_rep->user_nicename ); ?> 63 63 </a><br> 64 64
Note: See TracChangeset
for help on using the changeset viewer.