diff --git a/wp-admin/options-discussion.php b/wp-admin/options-discussion.php index 0ee931c9b0..a60bdbc838 100644 --- a/wp-admin/options-discussion.php +++ b/wp-admin/options-discussion.php @@ -109,7 +109,7 @@ $maxdeep = (int) apply_filters( 'thread_comments_depth_max', 10 ); $thread_comments_depth = '
"; endforeach; ?> @@ -299,7 +299,7 @@ $avatar_list = ''; add_filter( 'pre_option_show_avatars', '__return_true', 100 ); foreach ( $avatar_defaults as $default_key => $default_name ) { - $selected = ( $default == $default_key ) ? 'checked="checked" ' : ''; + $selected = ( $default === $default_key ) ? 'checked="checked" ' : ''; $avatar_list .= "\n\t'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 24e735d0b4..0ef171c8b6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51545'; +$wp_version = '5.9-alpha-51548'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.