Changeset 13418
- Timestamp:
- 02/25/2010 10:06:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-mail.php
r12855 r13418 11 11 require(dirname(__FILE__) . '/wp-load.php'); 12 12 13 if ( is_multisite() && ( !defined( 'POST_BY_EMAIL' ) || !POST_BY_EMAIL) )14 die( __( 'This action has been disabled by the administrator' ) );13 if ( ! apply_filters( 'enable_post_by_email_configuration', true ) ) 14 wp_die( __( 'This action has been disabled by the administrator' ) ); 15 15 16 16 /** Allow a plugin to do a complete takeover of Post by Email **/
Note: See TracChangeset
for help on using the changeset viewer.