diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 5c467aab0a..8784ed071f 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -478,7 +478,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() return $phpmailer->Send(); } catch ( phpmailerException $e ) { - $mail_error_data = compact( $to, $subject, $message, $headers, $attachments ); + $mail_error_data = compact( 'to', 'subject', 'message', 'headers', 'attachments' ); /** * Fires after a phpmailerException is caught. diff --git a/wp-includes/version.php b/wp-includes/version.php index db175e0435..9c2ce0ed26 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36687'; +$wp_version = '4.5-alpha-36688'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.