Switch from POST_BY_EMAIL constant to enable post-by-email when multisite to a filter. See #12381.

git-svn-id: https://develop.svn.wordpress.org/trunk@13418 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2010-02-25 22:06:10 +00:00
parent 61ffa682c1
commit 38b009d86c
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@
/** Make sure that the WordPress bootstrap has run before continuing. */
require(dirname(__FILE__) . '/wp-load.php');
if ( is_multisite() && ( !defined( 'POST_BY_EMAIL' ) || !POST_BY_EMAIL ) )
die( __( 'This action has been disabled by the administrator' ) );
if ( ! apply_filters( 'enable_post_by_email_configuration', true ) )
wp_die( __( 'This action has been disabled by the administrator' ) );
/** Allow a plugin to do a complete takeover of Post by Email **/
do_action('wp-mail.php');