diff --git src/wp-admin/customize.php src/wp-admin/customize.php
index 44654c003f..f1e66ff3dd 100644
|
|
if ( $wp_customize->is_ios() ) { |
102 | 102 | if ( is_rtl() ) { |
103 | 103 | $body_class .= ' rtl'; |
104 | 104 | } |
105 | | $body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); |
| 105 | $body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_user_locale() ) ) ); |
106 | 106 | |
107 | 107 | $admin_title = sprintf( $wp_customize->get_document_title_template(), __( 'Loading…' ) ); |
108 | 108 | |