Changeset 8495 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php
- Timestamp:
- 03/23/2019 07:09:54 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php
r8275 r8495 82 82 esc_attr__( 'Click to search Pluginrepo SupportPress for mentions of this author', 'wporg-plugins' ) 83 83 ), 84 sprintf( 85 '<a href="https://secure.helpscout.net/search/?query=mailbox:Plugins%20%s" title="%s">HS</a>', 86 urlencode( esc_attr( $author->user_nicename ) ), 87 esc_attr__( 'Click to search HelpScout for mentions of this author', 'wporg-plugins' ) 88 ), 84 89 ); 85 90 vprintf( '<span class="profile-sp-link">[ %s | %s ]</span>', $author_links ); … … 91 96 </span> 92 97 <div class="profile-email"> 93 <<?php echo $author->user_email; ?>>98 <<?php echo esc_attr( $author->user_email ); ?>> 94 99 <span class="profile-sp-link"> 95 100 <?php … … 98 103 esc_attr( $author->user_email ), 99 104 esc_attr__( 'Click to search Pluginrepo SupportPress for emails sent to/from this email address', 'wporg-plugins' ) 105 ); 106 ?> 107 108 <?php 109 printf( 110 '<a href="https://secure.helpscout.net/search/?query=mailbox:Plugins%20%s" title="%s">HS</a>', 111 esc_attr( $author->user_email ), 112 esc_attr__( 'Click to search HelpScout for emails sent to/from this email address', 'wporg-plugins' ) 100 113 ); 101 114 ?> … … 283 296 } 284 297 298 $plugin_name = $plugin->post_title; 285 299 $plugin_slug = $plugin->post_name; 286 300 if ( in_array( $plugin->post_status, array( 'new', 'pending' ) ) ) { … … 360 374 sprintf( 361 375 '<a href="https://supportpress.wordpress.org/plugins/?q=%s&status=&todo=Search+%%C2%%BB" title="%s">SP</a>', 362 urlencode( esc_attr( $plugin_ slug) ),376 urlencode( esc_attr( $plugin_name ) ), 363 377 esc_attr__( 'Click to search Plugin SupportPress for mentions of this plugin', 'wporg-plugins' ) 378 ), 379 sprintf( 380 '<a href="https://secure.helpscout.net/search/?query=mailbox:Plugins%20%s" title="%s">HS</a>', 381 rawurlencode( esc_attr( $plugin_name ) ), 382 esc_attr__( 'Click to search HelpScout for mentions of this plugin', 'wporg-plugins' ) 364 383 ), 365 384 ] );
Note: See TracChangeset
for help on using the changeset viewer.