Changeset 56804 for trunk/src/wp-includes/load.php
- Timestamp:
- 10/09/2023 02:47:57 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r56635 r56804 127 127 $userpass = base64_decode( $token ); 128 128 129 list( $user, $pass ) = explode( ':', $userpass ); 129 // There must be at least one colon in the string. 130 if ( ! str_contains( $userpass, ':' ) ) { 131 return; 132 } 133 134 list( $user, $pass ) = explode( ':', $userpass, 2 ); 130 135 131 136 // Now shove them in the proper keys where we're expecting later on.
Note: See TracChangeset
for help on using the changeset viewer.