diff --git a/wp-includes/version.php b/wp-includes/version.php index 22202ee28c..36523d2bb4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60121'; +$wp_version = '6.9-alpha-60122'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-mail.php b/wp-mail.php index 19c449b645..3f39de4264 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -17,7 +17,7 @@ if ( ! apply_filters( 'enable_post_by_email_configuration', true ) ) { $mailserver_url = get_option( 'mailserver_url' ); -if ( 'mail.example.com' === $mailserver_url || empty( $mailserver_url ) ) { +if ( empty( $mailserver_url ) || 'mail.example.com' === $mailserver_url ) { wp_die( __( 'This action has been disabled by the administrator.' ), 403 ); }