Changeset 11373
- Timestamp:
- 12/15/2021 06:46:45 AM (4 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins
- Files:
-
- 15 edited
-
plugin-directory/admin/list-table/class-committers.php (modified) (1 diff)
-
plugin-directory/admin/list-table/class-support-reps.php (modified) (1 diff)
-
plugin-directory/admin/metabox/class-author-card.php (modified) (2 diffs)
-
plugin-directory/api/routes/class-plugin-committers.php (modified) (1 diff)
-
plugin-directory/api/routes/class-plugin-self-transfer.php (modified) (1 diff)
-
plugin-directory/api/routes/class-plugin-support-reps.php (modified) (1 diff)
-
plugin-directory/api/routes/class-plugin.php (modified) (1 diff)
-
plugin-directory/class-plugin-directory.php (modified) (1 diff)
-
plugin-directory/shortcodes/class-release-confirmation.php (modified) (1 diff)
-
support-helphub/inc/helphub-contributors/admin/class-helphub-contributors-admin.php (modified) (1 diff)
-
support-helphub/inc/helphub-contributors/public/class-helphub-contributors-public.php (modified) (1 diff)
-
theme-directory/class-themes-api.php (modified) (1 diff)
-
trac-notifications/trac-components.php (modified) (3 diffs)
-
wp-i18n-teams/views/locale-details.php (modified) (5 diffs)
-
wporg-trac-watcher/admin/reports-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-committers.php
r9683 r11373 198 198 $row .= sprintf( 199 199 '<strong><a href="%s">%s</a></strong><br /><%s>', 200 esc_url( '//profiles.wordpress.org/' . $user_object->user_nicename ),200 esc_url( '//profiles.wordpress.org/' . $user_object->user_nicename . '/' ), 201 201 $user_object->user_login, 202 202 $user_object->user_email -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-support-reps.php
r9683 r11373 198 198 $row .= sprintf( 199 199 '<strong><a href="%s">%s</a></strong><br /><%s>', 200 esc_url( '//profiles.wordpress.org/' . $user_object->user_nicename ),200 esc_url( '//profiles.wordpress.org/' . $user_object->user_nicename . '/' ), 201 201 $user_object->user_login, 202 202 $user_object->user_email -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php
r10282 r11373 109 109 <?php echo get_avatar( $author->ID, 48 ); ?> 110 110 <div class="profile-details"> 111 <strong><a href="//profiles.wordpress.org/<?php echo $author->user_nicename; ?> "><?php echo $author->user_login; ?></a></strong>111 <strong><a href="//profiles.wordpress.org/<?php echo $author->user_nicename; ?>/"><?php echo $author->user_login; ?></a></strong> 112 112 <?php 113 113 $author_links = array( … … 127 127 128 128 <span class="profile-links"> 129 <a href="//profiles.wordpress.org/<?php echo $author->user_nicename; ?> "><?php _e( 'profile', 'wporg-plugins' ); ?></a> |130 <a href="//wordpress.org/support/users/<?php echo $author->user_nicename; ?> "><?php _e( 'support', 'wporg-plugins' ); ?></a>129 <a href="//profiles.wordpress.org/<?php echo $author->user_nicename; ?>/"><?php _e( 'profile', 'wporg-plugins' ); ?></a> | 130 <a href="//wordpress.org/support/users/<?php echo $author->user_nicename; ?>/"><?php _e( 'support', 'wporg-plugins' ); ?></a> 131 131 </span> 132 132 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/api/routes/class-plugin-committers.php
r9653 r11373 169 169 $data = array( 170 170 'nicename' => $user->user_nicename, 171 'profile' => esc_url( 'https://profiles.wordpress.org/' . $user->user_nicename ),171 'profile' => esc_url( 'https://profiles.wordpress.org/' . $user->user_nicename . '/' ), 172 172 'avatar' => get_avatar_url( $user->ID, 32 ), 173 173 'name' => $user->display_name, -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/api/routes/class-plugin-self-transfer.php
r10196 r11373 86 86 Tools::audit_log( sprintf( 87 87 'Ownership self-transferred to <a href="%s">%s</a>.', 88 esc_url( 'https://profiles.wordpress.org/' . $new_owner->user_nicename . '/' ),88 esc_url( 'https://profiles.wordpress.org/' . $new_owner->user_nicename . '/' ), 89 89 $new_owner->user_login 90 90 ), $plugin ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/api/routes/class-plugin-support-reps.php
r9653 r11373 157 157 $data = array( 158 158 'nicename' => $user->user_nicename, 159 'profile' => esc_url( 'https://profiles.wordpress.org/' . $user->user_nicename ),159 'profile' => esc_url( 'https://profiles.wordpress.org/' . $user->user_nicename . '/' ), 160 160 'avatar' => get_avatar_url( $user->ID, 32 ), 161 161 'name' => $user->display_name, -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/api/routes/class-plugin.php
r10816 r11373 296 296 } 297 297 298 return 'https://profiles.wordpress.org/' . $u->user_nicename ;298 return 'https://profiles.wordpress.org/' . $u->user_nicename . '/'; 299 299 } 300 300 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-directory.php
r11312 r11373 1805 1805 Tools::audit_log( sprintf( 1806 1806 'Submitted by <a href="%s">%s</a>.', 1807 esc_url( '//profiles.wordpress.org/' . $owner->user_nicename ),1807 esc_url( '//profiles.wordpress.org/' . $owner->user_nicename . '/' ), 1808 1808 $owner->user_login 1809 1809 ), $result->ID ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-release-confirmation.php
r10292 r11373 145 145 $data['committer'][ $i ] = sprintf( 146 146 '<a href="%s">%s</a>', 147 'https://profiles.wordpress.org/' . get_user_by( 'login', $login )->user_nicename ,147 'https://profiles.wordpress.org/' . get_user_by( 'login', $login )->user_nicename . '/', 148 148 esc_html( $login ) 149 149 ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/helphub-contributors/admin/class-helphub-contributors-admin.php
r7804 r11373 170 170 if ( is_array( $contributors ) ) : 171 171 foreach ( $contributors as $contributor ) { 172 $contributor_link = '<a href="https://profiles.wordpress.org/' . esc_html( $contributor ) . ' ">@' . esc_html( $contributor ) . '</a>';172 $contributor_link = '<a href="https://profiles.wordpress.org/' . esc_html( $contributor ) . '/">@' . esc_html( $contributor ) . '</a>'; 173 173 174 174 if ( end( $contributors ) == $contributor ) { -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/helphub-contributors/public/class-helphub-contributors-public.php
r7354 r11373 103 103 $data = apply_filters( 'helphub_contributors_user_data', $data, $contributor_object ); 104 104 105 $contributor_url = 'https://profiles.wordpress.org/' . $data['user_nicename'] ;105 $contributor_url = 'https://profiles.wordpress.org/' . $data['user_nicename'] . '/'; 106 106 $contributor_gravatar = '<img src="' . esc_url( get_avatar_url( $data['user_email'], array( 'size' => 40 ) ) ) . '" />'; 107 107 $contributor_name = '<span class="name">' . esc_html( $data['display_name'] ) . '</span>'; -
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
r11243 r11373 709 709 // WordPress.org user details. 710 710 'user_nicename' => $author->user_nicename, 711 'profile' => 'https://profiles.wordpress.org/' . $author->user_nicename ,711 'profile' => 'https://profiles.wordpress.org/' . $author->user_nicename . '/', 712 712 'avatar' => 'https://secure.gravatar.com/avatar/' . md5( $author->user_email ) . '?s=96&d=monsterid&r=g', 713 713 'display_name' => $author->display_name ?: $author->user_nicename, -
sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-components.php
r10729 r11373 395 395 } 396 396 397 printf( '<li><a href="//profiles.wordpress.org/%s ">%s %s</a></li>',397 printf( '<li><a href="//profiles.wordpress.org/%s/">%s %s</a></li>', 398 398 esc_attr( $maintainer->user_nicename ), 399 399 get_avatar( $maintainer->user_email, 36 ), … … 416 416 echo '<ul class="followers">'; 417 417 foreach ( $followers as $follower ) { 418 echo '<li><a title="' . esc_attr( $follower->user_login ) . '" href="//profiles.wordpress.org/' . esc_attr( $follower->user_nicename ) . ' ">';418 echo '<li><a title="' . esc_attr( $follower->user_login ) . '" href="//profiles.wordpress.org/' . esc_attr( $follower->user_nicename ) . '/">'; 419 419 echo get_avatar( $follower->user_email, 36 ) . '</a></li>'; 420 420 } … … 718 718 } 719 719 720 echo '<a href="//profiles.wordpress.org/' . esc_attr( $maintainer->user_nicename ) . ' " title="' . esc_attr( $maintainer->display_name ) . '">' . get_avatar( $maintainer->user_email, 24 ) . "</a>";720 echo '<a href="//profiles.wordpress.org/' . esc_attr( $maintainer->user_nicename ) . '/" title="' . esc_attr( $maintainer->display_name ) . '">' . get_avatar( $maintainer->user_email, 24 ) . "</a>"; 721 721 } 722 722 echo '</td>'; -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wp-i18n-teams/views/locale-details.php
r8781 r11373 73 73 ?> 74 74 <li> 75 <a class="profile" href="https://profiles.wordpress.org/<?php echo esc_attr( $locale_manager['nice_name'] ); ?> "><?php75 <a class="profile" href="https://profiles.wordpress.org/<?php echo esc_attr( $locale_manager['nice_name'] ); ?>/"><?php 76 76 echo get_avatar( $locale_manager['email'], 60 ); 77 77 echo esc_html( $locale_manager['display_name'] ); … … 94 94 ?> 95 95 <li> 96 <a class="profile" href="https://profiles.wordpress.org/<?php echo esc_attr( $validator['nice_name'] ); ?> "><?php96 <a class="profile" href="https://profiles.wordpress.org/<?php echo esc_attr( $validator['nice_name'] ); ?>/"><?php 97 97 echo get_avatar( $validator['email'], 60 ); 98 98 echo esc_html( $validator['display_name'] ); … … 115 115 ?> 116 116 <li> 117 <a class="profile" href="https://profiles.wordpress.org/<?php echo esc_attr( $validator['nice_name'] ); ?> "><?php117 <a class="profile" href="https://profiles.wordpress.org/<?php echo esc_attr( $validator['nice_name'] ); ?>/"><?php 118 118 echo get_avatar( $validator['email'], 40 ); 119 119 echo esc_html( $validator['display_name'] ); … … 137 137 foreach ( $locale_data['translators'] as $translator ) { 138 138 $translators[] = sprintf( 139 '<a href="https://profiles.wordpress.org/%s ">%s</a>',139 '<a href="https://profiles.wordpress.org/%s/">%s</a>', 140 140 esc_attr( $translator['nice_name'] ), 141 141 esc_html( $translator['display_name'] ) … … 155 155 foreach ( $locale_data['translators_past'] as $translator ) { 156 156 $translators[] = sprintf( 157 '<a href="https://profiles.wordpress.org/%s ">%s</a>',157 '<a href="https://profiles.wordpress.org/%s/">%s</a>', 158 158 esc_attr( $translator['nice_name'] ), 159 159 esc_html( $translator['display_name'] ) -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-trac-watcher/admin/reports-page.php
r11371 r11373 108 108 'id' => $r->id, 109 109 'name' => $r->display_name ?: $r->user_nicename, 110 'link' => 'https://profiles.wordpress.org/' . $r->user_nicename ,110 'link' => 'https://profiles.wordpress.org/' . $r->user_nicename . '/', 111 111 'count' => $r->count 112 112 ];
Note: See TracChangeset
for help on using the changeset viewer.