Making WordPress.org

Ticket #4653: 4653.diff

File 4653.diff, 4.3 KB (added by Ipstenu, 5 years ago)
  • trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php

     
    7777                                                esc_attr__( 'Click to search Pluginrepo P2 for mentions of this author', 'wporg-plugins' )
    7878                                        ),
    7979                                        sprintf(
    80                                                 '<a href="https://supportpress.wordpress.org/plugins/?q=%s&status=&todo=Search+%%C2%%BB" title="%s">SP</a>',
    81                                                 urlencode( esc_attr( $author->user_nicename ) ),
    82                                                 esc_attr__( 'Click to search Pluginrepo SupportPress for mentions of this author', 'wporg-plugins' )
    83                                         ),
    84                                         sprintf(
    8580                                                '<a href="https://secure.helpscout.net/search/?query=mailbox:Plugins%%20%s" title="%s">HS</a>',
    8681                                                urlencode( esc_attr( $author->user_nicename ) ),
    8782                                                esc_attr__( 'Click to search Help Scout for mentions of this author', 'wporg-plugins' )
    8883                                        ),
    8984                                );
    90                                 vprintf( '<span class="profile-sp-link">[ %s | %s | %s ]</span>', $author_links );
     85                                vprintf( '<span class="profile-sp-link">[ %s | %s ]</span>', $author_links );
    9186                                ?>
    9287
    9388                                <span class="profile-links">
     
    10095                                        <?php
    10196                                        $author_email_links = array(
    10297                                                sprintf(
    103                                                         '<a href="https://supportpress.wordpress.org/plugins/?sender=%s&status=&todo=Search" title="%s">SP</a>',
    104                                                         urlencode( $author->user_email ),
    105                                                         esc_attr__( 'Click to search Pluginrepo SupportPress for emails sent to/from this email address', 'wporg-plugins' )
    106                                                 ),
    107                                                 sprintf(
    10898                                                        '<a href="https://secure.helpscout.net/search/?query=mailbox:Plugins%%20%s" title="%s">HS</a>',
    10999                                                        urlencode( $author->user_email ),
    110100                                                        esc_attr__( 'Click to search Help Scout for emails sent to/from this email address', 'wporg-plugins' )
    111101                                                ),
    112102                                        );
    113                                         vprintf( '<span class="profile-sp-link">[ %s | %s ]</span>', $author_email_links );
     103                                        vprintf( '<span class="profile-sp-link">[ %s ]</span>', $author_email_links );
    114104                                        ?>
    115105                                </div>
    116106                                <div class="profile-join">
     
    358348                                echo '*';
    359349                        }
    360350
    361                         vprintf( '<span class="profile-sp-link">[ %s | %s | %s | %s ]</span>', [
     351                        vprintf( '<span class="profile-sp-link">[ %s | %s | %s ]</span>', [
    362352                                sprintf(
    363353                                        '<a href="%s" title="%s">%s</a>',
    364354                                        esc_url( get_edit_post_link( $plugin->ID, '' ) ),
     
    371361                                        esc_attr__( 'Click to search Plugin Team P2 for mentions of this plugin', 'wporg-plugins' )
    372362                                ),
    373363                                sprintf(
    374                                         '<a href="https://supportpress.wordpress.org/plugins/?q=%s&status=&todo=Search+%%C2%%BB" title="%s">SP</a>',
    375                                         urlencode( esc_attr( $plugin_name ) ),
    376                                         esc_attr__( 'Click to search Plugin SupportPress for mentions of this plugin', 'wporg-plugins' )
    377                                 ),
    378                                 sprintf(
    379364                                        '<a href="https://secure.helpscout.net/search/?query=mailbox:Plugins%%20%s" title="%s">HS</a>',
    380365                                        rawurlencode( esc_attr( $plugin_name ) ),
    381366                                        esc_attr__( 'Click to search Help Scout for mentions of this plugin', 'wporg-plugins' )
  • trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-review-tools.php

     
    294294                        }
    295295
    296296                        // HelpScout requires urlencode() becuase it wants spaces as + signs.
    297                         $contact_author = 'https://secure.helpscout.net/mailbox/ad3e85554c5bd064/new-ticket/?name=' . $author->display_name . '&email=' . $author->user_email . '&cc=' . $cc_emails . '&subject=' . urlencode( $subject );
     297                        $contact_author = 'https://secure.helpscout.net/mailbox/ad3e85554c5bd064/new-ticket/?name=' . $author->display_name . '&email=' . urlencode( $author->user_email ) . '&cc=' . urlencode( $cc_emails ) . '&subject=' . urlencode( $subject );
    298298                        ?>
    299299                        <a id="contact-author" class="button button-primary" href="<?php echo esc_url( $contact_author ); ?>">Contact plugin committer(s)</a>
    300300                        <?php