Integrate maybe_cancel_post_by_email() into wp-mail.php. see #11644
git-svn-id: http://svn.automattic.com/wordpress/trunk@12855 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
212533c466
commit
9f1aa91f37
|
@ -2033,10 +2033,4 @@ function filter_SSL( $url) {
|
|||
return $url;
|
||||
}
|
||||
|
||||
function maybe_cancel_post_by_email() {
|
||||
if ( !defined( 'POST_BY_EMAIL' ) || !POST_BY_EMAIL )
|
||||
die( __( 'This action has been disabled by the administrator' ) );
|
||||
}
|
||||
add_action( 'wp-mail.php', 'maybe_cancel_post_by_email' );
|
||||
|
||||
?>
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
/** 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' ) );
|
||||
|
||||
/** Allow a plugin to do a complete takeover of Post by Email **/
|
||||
do_action('wp-mail.php');
|
||||
|
||||
|
|
Loading…
Reference in New Issue