Changeset 50045 for branches/5.6/src/wp-includes/user.php
- Timestamp:
- 01/28/2021 12:31:10 AM (4 years ago)
- Location:
- branches/5.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.6
-
branches/5.6/src/wp-includes/user.php
r49754 r50045 462 462 } 463 463 464 // Check that we're trying to authenticate465 if ( ! isset( $_SERVER['PHP_AUTH_USER'] ) ) {464 // Both $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'] must be set in order to attempt authentication. 465 if ( ! isset( $_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW'] ) ) { 466 466 return $input_user; 467 467 }
Note: See TracChangeset
for help on using the changeset viewer.