diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index f99c50d85c..fc1ca67dcb 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -130,7 +130,6 @@ function edit_user( $user_id = 0 ) { $user->syntax_highlighting = isset( $_POST['syntax_highlighting'] ) && 'false' === $_POST['syntax_highlighting'] ? 'false' : 'true'; $user->admin_color = isset( $_POST['admin_color'] ) ? sanitize_text_field( $_POST['admin_color'] ) : 'fresh'; $user->show_admin_bar_front = isset( $_POST['admin_bar_front'] ) ? 'true' : 'false'; - $user->locale = ''; } $user->comment_shortcuts = isset( $_POST['comment_shortcuts'] ) && 'true' == $_POST['comment_shortcuts'] ? 'true' : ''; diff --git a/wp-includes/version.php b/wp-includes/version.php index 333c714a46..9dd0bac497 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47738'; +$wp_version = '5.5-alpha-47739'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.