Changeset 19059
- Timestamp:
- 10/25/2011 05:09:03 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/l10n.php
r18995 r19059 37 37 38 38 // If multisite, check options. 39 if ( is_multisite() && !defined('WP_INSTALLING')) {40 $ms_locale = get_option('WPLANG');41 if ( $ms_locale === false)39 if ( is_multisite() ) { 40 // Don't check blog option when installing. 41 if ( defined( 'WP_INSTALLING' ) || ( false === $ms_locale = get_option( 'WPLANG' ) ) ) 42 42 $ms_locale = get_site_option('WPLANG'); 43 43
Note: See TracChangeset
for help on using the changeset viewer.