Changeset 45590 for trunk/src/wp-includes/l10n.php
- Timestamp:
- 07/02/2019 11:41:16 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r45254 r45590 54 54 if ( is_multisite() ) { 55 55 // Don't check blog option when installing. 56 if ( wp_installing() || ( false === $ms_locale = get_option( 'WPLANG' ) )) {56 if ( wp_installing() ) { 57 57 $ms_locale = get_site_option( 'WPLANG' ); 58 } else { 59 $ms_locale = get_option( 'WPLANG' ); 60 if ( false === $ms_locale ) { 61 $ms_locale = get_site_option( 'WPLANG' ); 62 } 58 63 } 59 64
Note: See TracChangeset
for help on using the changeset viewer.