From 31c5fc58f26ed0e17241933cf8217bda0909777f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 10 Aug 2021 12:53:59 +0000 Subject: [PATCH] Docs: Add a `@see` reference to the `wp_mail_content_type` filter in `wp_staticize_emoji_for_email()`. Follow-up to [31860]. See #53399. Built from https://develop.svn.wordpress.org/trunk@51589 git-svn-id: http://core.svn.wordpress.org/trunk@51200 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 83310c3a6e..a25a33469e 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -5876,11 +5876,11 @@ function wp_staticize_emoji_for_email( $mail ) { } /* - * We can only transform the emoji into images if it's a text/html email. + * We can only transform the emoji into images if it's a `text/html` email. * To do that, here's a cut down version of the same process that happens - * in wp_mail() - get the Content-Type from the headers, if there is one, - * then pass it through the wp_mail_content_type filter, in case a plugin - * is handling changing the Content-Type. + * in wp_mail() - get the `Content-Type` from the headers, if there is one, + * then pass it through the {@see 'wp_mail_content_type'} filter, in case + * a plugin is handling changing the `Content-Type`. */ $headers = array(); if ( isset( $mail['headers'] ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 2584ae21f1..e55587e4ff 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51588'; +$wp_version = '5.9-alpha-51589'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.