Coding Standards: Use a strict comparison operator when comparing values.

Props batmoo, mukesh27.

Built from https://develop.svn.wordpress.org/branches/5.5@49381


git-svn-id: http://core.svn.wordpress.org/branches/5.5@49140 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
whyisjake 2020-10-29 17:46:06 +00:00
parent f2b1d503c0
commit d80104976c
2 changed files with 2 additions and 2 deletions

View File

@ -1160,7 +1160,7 @@ function _get_meta_table( $type ) {
*/
function is_protected_meta( $meta_key, $meta_type = '' ) {
$sanitized_key = preg_replace( "/[^\x20-\x7E\p{L}]/", '', $meta_key );
$protected = strlen( $sanitized_key ) > 0 && ( '_' == $sanitized_key[0] );
$protected = strlen( $sanitized_key ) > 0 && ( '_' === $sanitized_key[0] );
/**
* Filters whether a meta key is considered protected.

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5.2-alpha-49379';
$wp_version = '5.5.2-alpha-49381';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.