Changeset 49078 for trunk/src/wp-login.php
- Timestamp:
- 09/30/2020 09:52:27 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-login.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r48359 r49078 324 324 325 325 /** 326 * Outputs the Javascript to handle the form shaking .326 * Outputs the Javascript to handle the form shaking on the login page. 327 327 * 328 328 * @since 3.0.0 … … 337 337 338 338 /** 339 * Outputs the viewport meta tag .339 * Outputs the viewport meta tag for the login page. 340 340 * 341 341 * @since 3.7.0 … … 348 348 349 349 /** 350 * Handles sending password retrieval email touser.350 * Handles sending a password retrieval email to a user. 351 351 * 352 352 * @since 2.5.0 353 353 * 354 * @return bool|WP_Error True: when finish. WP_Error on error354 * @return true|WP_Error True when finished, WP_Error object on error. 355 355 */ 356 356 function retrieve_password() { … … 423 423 /* 424 424 * The blogname option is escaped with esc_html on the way into the database 425 * in sanitize_option we want to reverse this for the plain text arena of emails.425 * in sanitize_option. We want to reverse this for the plain text arena of emails. 426 426 */ 427 427 $site_name = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ); … … 446 446 * @since 4.4.0 Added the `$user_login` and `$user_data` parameters. 447 447 * 448 * @param string $title Default email title.448 * @param string $title Email subject. 449 449 * @param string $user_login The username for the user. 450 450 * @param WP_User $user_data WP_User object. … … 460 460 * @since 4.1.0 Added `$user_login` and `$user_data` parameters. 461 461 * 462 * @param string $message Defaultmail message.462 * @param string $message Email message. 463 463 * @param string $key The activation key. 464 464 * @param string $user_login The username for the user.
Note: See TracChangeset
for help on using the changeset viewer.