diff --git a/wp-includes/user.php b/wp-includes/user.php index 74f3ecba79..700a758990 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -2366,7 +2366,7 @@ function wp_insert_user( $userdata ) { $admin_color = empty( $userdata['admin_color'] ) ? 'fresh' : $userdata['admin_color']; $meta['admin_color'] = preg_replace( '|[^a-z0-9 _.\-@]|i', '', $admin_color ); - $meta['use_ssl'] = empty( $userdata['use_ssl'] ) || ! $userdata['use_ssl'] ? '0' : '1'; + $meta['use_ssl'] = empty( $userdata['use_ssl'] ) ? '0' : '1'; $meta['show_admin_bar_front'] = empty( $userdata['show_admin_bar_front'] ) ? 'true' : $userdata['show_admin_bar_front']; diff --git a/wp-includes/version.php b/wp-includes/version.php index 5321a42bd0..942e73b0f2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta2-59231'; +$wp_version = '6.7-beta2-59232'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.