From c913fc4c23c175afe5bea7d279205809706c6bd1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 23 Aug 2016 14:01:16 +0000 Subject: [PATCH] WP Mail: If post-by-email functionality is disabled, `wp-mail.php` should return a `403 Forbidden` status code instead if `500 Internal Server Error`. Props Presskopp, tomdxw. Fixes #37572. git-svn-id: https://develop.svn.wordpress.org/trunk@38332 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-mail.php b/src/wp-mail.php index 62c9a11903..07f5fc13a7 100644 --- a/src/wp-mail.php +++ b/src/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 ); /** * Fires to allow a plugin to do a complete takeover of Post by Email.