Changeset 9002
- Timestamp:
- 06/28/2019 11:53:09 AM (5 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-committers.php
r6287 r9002 56 56 <li data-user="<?php echo esc_attr( $committer->user_nicename ); ?>"> 57 57 <?php echo get_avatar( $committer->ID, 32 ); ?> 58 <a href="<?php echo esc_url( 'https://profiles.wordpress.org/' . $committer->user_nicename); ?>">58 <a href="<?php echo esc_url( "https://profiles.wordpress.org/{$committer->user_nicename}/" ); ?>"> 59 59 <?php echo Template::encode( $committer->display_name ); ?> 60 60 </a><br> -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-contributors.php
r6287 r9002 62 62 <li> 63 63 <?php echo get_avatar( $contributor->ID, 32 ); ?> 64 <a href="<?php echo esc_url( 'https://profiles.wordpress.org/' . $contributor->user_nicename); ?>">64 <a href="<?php echo esc_url( "https://profiles.wordpress.org/{$contributor->user_nicename}/" ); ?>"> 65 65 <?php echo Template::encode( $contributor->display_name ); ?> 66 66 </a> -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-support-reps.php
r6804 r9002 59 59 <li data-user="<?php echo esc_attr( $support_rep->user_nicename ); ?>"> 60 60 <?php echo get_avatar( $support_rep->ID, 32 ); ?> 61 <a href="<?php echo esc_url( 'https://profiles.wordpress.org/' . $support_rep->user_nicename); ?>">61 <a href="<?php echo esc_url( "https://profiles.wordpress.org/{$support_rep->user_nicename}/" ); ?>"> 62 62 <?php echo Template::encode( $support_rep->display_name ); ?> 63 63 </a><br>
Note: See TracChangeset
for help on using the changeset viewer.