Changeset 42221
- Timestamp:
- 11/23/2017 07:05:42 PM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-includes/general-template.php
r41992 r42221 704 704 $output = __( 'html_lang_attribute' ); 705 705 if ( 'html_lang_attribute' === $output || preg_match( '/[^a-zA-Z0-9-]/', $output ) ) { 706 $output = get_locale();706 $output = is_admin() ? get_user_locale() : get_locale(); 707 707 $output = str_replace( '_', '-', $output ); 708 708 }
Note: See TracChangeset
for help on using the changeset viewer.