Changeset 59754 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 02/03/2025 07:50:50 PM (10 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pluggable.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r59603 r59754 599 599 * otherwise WP_Error. 600 600 */ 601 function wp_authenticate( $username, $password ) { 601 function wp_authenticate( 602 $username, 603 #[\SensitiveParameter] 604 $password 605 ) { 602 606 $username = sanitize_user( $username ); 603 607 $password = trim( $password ); … … 2632 2636 * @return string The hash string of the password. 2633 2637 */ 2634 function wp_hash_password( $password ) { 2638 function wp_hash_password( 2639 #[\SensitiveParameter] 2640 $password 2641 ) { 2635 2642 global $wp_hasher; 2636 2643 … … 2668 2675 * @return bool False, if the $password does not match the hashed password. 2669 2676 */ 2670 function wp_check_password( $password, $hash, $user_id = '' ) { 2677 function wp_check_password( 2678 #[\SensitiveParameter] 2679 $password, 2680 $hash, 2681 $user_id = '' 2682 ) { 2671 2683 global $wp_hasher; 2672 2684 … … 2864 2876 * @param int $user_id User ID. 2865 2877 */ 2866 function wp_set_password( $password, $user_id ) { 2878 function wp_set_password( 2879 #[\SensitiveParameter] 2880 $password, 2881 $user_id 2882 ) { 2867 2883 global $wpdb; 2868 2884
Note: See TracChangeset
for help on using the changeset viewer.