diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php
index 815719105e..bb56530309 100644
a
|
b
|
function remove_accents( $string ) { |
1919 | 1919 | // Used for locale-specific rules. |
1920 | 1920 | $locale = get_locale(); |
1921 | 1921 | |
1922 | | if ( in_array( $locale, array( 'de_DE', 'de_DE_formal', 'de_CH', 'de_CH_informal' ), true ) ) { |
| 1922 | if ( in_array( $locale, array( 'de_AT', 'de_DE', 'de_DE_formal', 'de_CH', 'de_CH_informal' ), true ) ) { |
1923 | 1923 | $chars['Ä'] = 'Ae'; |
1924 | 1924 | $chars['ä'] = 'ae'; |
1925 | 1925 | $chars['Ö'] = 'Oe'; |