Changeset 50472 for branches/5.7/src/wp-includes/https-detection.php
- Timestamp:
- 03/02/2021 03:14:09 PM (4 years ago)
- Location:
- branches/5.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.7
-
branches/5.7/src/wp-includes/https-detection.php
r50391 r50472 131 131 if ( is_wp_error( $unverified_response ) ) { 132 132 $support_errors->add( 133 $unverified_response->get_error_code(),134 $unverified_response->get_error_message()133 'https_request_failed', 134 __( 'HTTPS request failed.' ) 135 135 ); 136 136 } else { 137 137 $support_errors->add( 138 138 'ssl_verification_failed', 139 $response->get_error_message()139 __( 'SSL verification failed.' ) 140 140 ); 141 141 }
Note: See TracChangeset
for help on using the changeset viewer.