X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/073c5ed6408e2f00dc1863b463fe205467628905..0f74cdeda4c069bfbb9c4131ef1352f55b6f8499:/wp-mail.php?ds=sidebyside diff --git a/wp-mail.php b/wp-mail.php index b5af05ab..35fb24ae 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -12,7 +12,7 @@ require(dirname(__FILE__) . '/wp-load.php'); /** This filter is documented in wp-admin/options.php */ if ( ! apply_filters( 'enable_post_by_email_configuration', true ) ) - wp_die( __( 'This action has been disabled by the administrator.' ) ); + wp_die( __( 'This action has been disabled by the administrator.' ), 403 ); $mailserver_url = get_option( 'mailserver_url' ); @@ -124,6 +124,7 @@ for ( $i = 1; $i <= $count; $i++ ) { $author = trim($line); $author = sanitize_email($author); if ( is_email($author) ) { + /* translators: Post author email address */ echo '

' . sprintf(__('Author is %s'), $author) . '

'; $userdata = get_user_by('email', $author); if ( ! empty( $userdata ) ) {