Changeset 57226
- Timestamp:
- 12/24/2023 01:03:12 PM (15 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-recovery-mode-key-service.php
r55397 r57226 39 39 * @since 5.2.0 40 40 * 41 * @global PasswordHash $wp_hasher 41 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 42 42 * 43 43 * @param string $token A token generated by {@see generate_recovery_mode_token()}. … … 86 86 * @since 5.2.0 87 87 * 88 * @global PasswordHash $wp_hasher 88 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 89 89 * 90 90 * @param string $token The token used when generating the given key. -
trunk/src/wp-includes/pluggable.php
r56767 r57226 2529 2529 * @since 2.5.0 2530 2530 * 2531 * @global PasswordHash $wp_hasher PHPass object 2531 * @global PasswordHash $wp_hasher PHPass object. 2532 2532 * 2533 2533 * @param string $password Plain text user password to hash. -
trunk/src/wp-includes/user.php
r56572 r57226 2876 2876 * @since 4.4.0 2877 2877 * 2878 * @global PasswordHash $wp_hasher Portable PHP password hashing framework .2878 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 2879 2879 * 2880 2880 * @param WP_User $user User to retrieve password reset key for. … … 3048 3048 * @since 5.7.0 Added `$user_login` parameter. 3049 3049 * 3050 * @global wpdb $wpdb 3051 * @global PasswordHash $wp_hasher Portable PHP password hashing framework.3050 * @global wpdb $wpdb WordPress database abstraction object. 3051 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 3052 3052 * 3053 3053 * @param string $user_login Optional. Username to send a password retrieval email for. … … 4818 4818 * @since 4.9.6 4819 4819 * 4820 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 4821 * 4820 4822 * @param int $request_id Request ID. 4821 4823 * @return string Confirmation key. … … 4848 4850 * 4849 4851 * @since 4.9.6 4852 * 4853 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 4850 4854 * 4851 4855 * @param string $request_id ID of the request being confirmed.
Note: See TracChangeset
for help on using the changeset viewer.