Changeset 52605
- Timestamp:
- 01/19/2022 12:40:57 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r52604 r52605 2940 2940 2941 2941 /** 2942 * Filter whether to send the retrieve password email.2942 * Filters whether to send the retrieve password email. 2943 2943 * 2944 2944 * @since 6.0.0 2945 2945 * 2946 * @param bool $send False to prevent sending. Default : true2946 * @param bool $send False to prevent sending. Default true. 2947 2947 */ 2948 2948 if ( ! apply_filters( 'send_retrieve_password_email', true ) ) { … … 3040 3040 3041 3041 /** 3042 * Filter the contents of the reset password notification email sent to the user.3042 * Filters the contents of the reset password notification email sent to the user. 3043 3043 * 3044 3044 * @since 6.0.0 -
trunk/tests/phpunit/tests/user/retrievePassword.php
r52604 r52605 10 10 * Test retrieve_password(), in wp-includes/user.php. 11 11 * 12 * @since 6.0.0 13 * 12 14 * @group user 13 *14 15 * @covers ::retrieve_password 15 16 */ … … 24 25 protected $user; 25 26 27 /** 28 * Create users for tests. 29 * 30 * @since 6.0.0 31 */ 26 32 public function set_up() { 27 33 parent::set_up(); … … 37 43 38 44 /** 45 * The function should error when the email was not sent. 39 46 * @ticket 54690 40 47 */ … … 45 52 46 53 /** 54 * The function should error when the email was not sent. 47 55 * @ticket 54690 48 56 */
Note: See TracChangeset
for help on using the changeset viewer.