Changeset 59754 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 02/03/2025 07:50:50 PM (10 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-functions.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r59738 r59754 939 939 * @return bool 940 940 */ 941 function wpmu_signup_blog_notification( $domain, $path, $title, $user_login, $user_email, $key, $meta = array() ) { 941 function wpmu_signup_blog_notification( 942 $domain, 943 $path, 944 $title, 945 $user_login, 946 $user_email, 947 #[\SensitiveParameter] 948 $key, 949 $meta = array() 950 ) { 942 951 /** 943 952 * Filters whether to bypass the new site email notification. … … 1074 1083 * @return bool 1075 1084 */ 1076 function wpmu_signup_user_notification( $user_login, $user_email, $key, $meta = array() ) { 1085 function wpmu_signup_user_notification( 1086 $user_login, 1087 $user_email, 1088 #[\SensitiveParameter] 1089 $key, 1090 $meta = array() 1091 ) { 1077 1092 /** 1078 1093 * Filters whether to bypass the email notification for new user sign-up. … … 1176 1191 * @return array|WP_Error An array containing information about the activated user and/or blog. 1177 1192 */ 1178 function wpmu_activate_signup( $key ) { 1193 function wpmu_activate_signup( 1194 #[\SensitiveParameter] 1195 $key 1196 ) { 1179 1197 global $wpdb; 1180 1198 … … 1328 1346 * @return int|false Returns false on failure, or int $user_id on success. 1329 1347 */ 1330 function wpmu_create_user( $user_name, $password, $email ) { 1348 function wpmu_create_user( 1349 $user_name, 1350 #[\SensitiveParameter] 1351 $password, 1352 $email 1353 ) { 1331 1354 $user_name = preg_replace( '/\s+/', '', sanitize_user( $user_name, true ) ); 1332 1355 … … 1612 1635 * @return bool Whether the email notification was sent. 1613 1636 */ 1614 function wpmu_welcome_notification( $blog_id, $user_id, $password, $title, $meta = array() ) { 1637 function wpmu_welcome_notification( 1638 $blog_id, 1639 $user_id, 1640 #[\SensitiveParameter] 1641 $password, 1642 $title, 1643 $meta = array() 1644 ) { 1615 1645 $current_network = get_network(); 1616 1646 … … 1846 1876 * @return bool 1847 1877 */ 1848 function wpmu_welcome_user_notification( $user_id, $password, $meta = array() ) { 1878 function wpmu_welcome_user_notification( 1879 $user_id, 1880 #[\SensitiveParameter] 1881 $password, 1882 $meta = array() 1883 ) { 1849 1884 $current_network = get_network(); 1850 1885 … … 2272 2307 * @param array $meta Signup meta data. 2273 2308 */ 2274 function add_new_user_to_blog( $user_id, $password, $meta ) { 2309 function add_new_user_to_blog( 2310 $user_id, 2311 #[\SensitiveParameter] 2312 $password, 2313 $meta 2314 ) { 2275 2315 if ( ! empty( $meta['add_to_blog'] ) ) { 2276 2316 $blog_id = $meta['add_to_blog'];
Note: See TracChangeset
for help on using the changeset viewer.