diff --git a/wp-includes/version.php b/wp-includes/version.php index d36e7b01bf..a695af0dec 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0.3-alpha-54532'; +$wp_version = '6.0.3-alpha-54533'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-mail.php b/wp-mail.php index 794598d379..eab3e0cf9f 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -137,8 +137,6 @@ for ( $i = 1; $i <= $count; $i++ ) { } $author = sanitize_email( $author ); if ( is_email( $author ) ) { - /* translators: %s: Post author email address. */ - echo '
' . sprintf( __( 'Author is %s' ), $author ) . '
'; $userdata = get_user_by( 'email', $author ); if ( ! empty( $userdata ) ) { $post_author = $userdata->ID;