Changeset 49919 for trunk/src/wp-includes/user.php
- Timestamp:
- 01/02/2021 09:34:01 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r49789 r49919 463 463 } 464 464 465 // Check that we're trying to authenticate466 if ( ! isset( $_SERVER['PHP_AUTH_USER'] ) ) {465 // Both $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'] must be set in order to attempt authentication. 466 if ( ! isset( $_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW'] ) ) { 467 467 return $input_user; 468 468 }
Note: See TracChangeset
for help on using the changeset viewer.