Changeset 61137
- Timestamp:
- 11/04/2025 06:58:49 PM (5 days ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r61038 r61137 4845 4845 } 4846 4846 4847 /* 4848 * Generate the new user request key first, as it is used by both the $request 4849 * object and the confirm_url array. 4850 * See https://core.trac.wordpress.org/ticket/44940 4851 */ 4852 $request->confirm_key = wp_generate_user_request_key( $request_id ); 4853 4847 4854 $email_data = array( 4848 4855 'request' => $request, … … 4853 4860 'action' => 'confirmaction', 4854 4861 'request_id' => $request_id, 4855 'confirm_key' => wp_generate_user_request_key( $request_id ),4862 'confirm_key' => $request->confirm_key, 4856 4863 ), 4857 4864 wp_login_url()
Note: See TracChangeset
for help on using the changeset viewer.