Opened 5 weeks ago
Closed 5 weeks ago
#7744 closed enhancement (fixed)
Plugin Review Submissions - Change the text of the updated plugin automated reply.
Reported by: | frantorres | Owned by: | dd32 |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Plugin Directory | Keywords: | |
Cc: |
Description
Once a plugin is in the review process, when a plugin author updates their plugin using the submission page, an automated reply is generated to confirm the update and open the ticket in the reviewer's side.
This text is:
New ZIP uploaded by <author>, version <version>. Comment: <comment> <URL>
And is generated in the update_review_email function()
As there are some plugin authors that feel confused about this message, the proposal is to change it to:
This is an automated message to confirm that we have received your updated plugin file. File updated by <author>, version <version> Comment: <comment> <URL>
Which in code might be something like (not tested)
<?php $text = sprintf( "This is an automated message to confirm that we have received your updated plugin file.\n\nFile updated by %s, version %s\n", wp_get_current_user()->user_login, $attachment->version ); if( ! empty( $attachment->post_content ) ){ $text .= sprintf( "Comment: %s\n", $attachment->post_content, } $text .= sprintf( "\n%s", wp_get_attachment_url( $attachment->ID ) );
Change History (2)
Note: See
TracTickets for help on using
tickets.
In 13962: