- Timestamp:
- 05/22/2020 05:54:50 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health-auto-updates.php
r47808 r47841 66 66 */ 67 67 public function test_constants( $constant, $value ) { 68 if ( defined( $constant ) && constant( $constant ) != $value ) {68 if ( defined( $constant ) && constant( $constant ) !== $value ) { 69 69 return array( 70 70 'description' => sprintf( … … 246 246 247 247 // Once we've hit '/' or 'C:\', we need to stop. dirname will keep returning the input here. 248 if ( dirname( $context_dir ) == $context_dir ) {248 if ( dirname( $context_dir ) === $context_dir ) { 249 249 break; 250 250 }
Note: See TracChangeset
for help on using the changeset viewer.