Fix the inline documentation syntax in the hook docs for the password_change_email filter, introduced in 4.3.

See [32820]. See #32891.

Built from https://develop.svn.wordpress.org/trunk@33244


git-svn-id: http://core.svn.wordpress.org/trunk@33216 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-07-13 22:11:24 +00:00
parent 284b726bfb
commit 86f21b4d90
2 changed files with 10 additions and 10 deletions

View File

@ -2220,21 +2220,21 @@ All at ###SITENAME###
);
/**
* Filter the email sent when the user's password is changed.
* Filter the contents of the email sent when the user's password is changed.
*
* @since 4.3.0
*
* @param array $pass_change_email {
* Used to build wp_mail(). https://developer.wordpress.org/reference/functions/wp_mail/
* Used to build wp_mail().
* @type string $to The intended recipients. Add emails in a comma separated string.
* @type string $subject The subject of the email.
* @type string $message The content of the email.
* The following strings have a special meaning and will get replaced dynamically:
* ###USERNAME### The current user's username.
* ###ADMIN_EMAIL### The admin email in case this was unexpected.
* ###EMAIL### The old email.
* ###SITENAME### The name of the site.
* ###SITEURL### The URL to the site.
* - ###USERNAME### The current user's username.
* - ###ADMIN_EMAIL### The admin email in case this was unexpected.
* - ###EMAIL### The old email.
* - ###SITENAME### The name of the site.
* - ###SITEURL### The URL to the site.
* @type string $headers Headers. Add headers in a newline (\r\n) separated string.
* }
* @param array $user The original user array.

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta2-33243';
$wp_version = '4.3-beta2-33244';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.