Changeset 12900 for trunk/wp-includes/l10n.php
- Timestamp:
- 01/29/2010 07:03:51 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/l10n.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/l10n.php
r12840 r12900 35 35 if ( defined( 'WPLANG' ) ) 36 36 $locale = WPLANG; 37 38 // If multisite, check options. 39 if ( is_multisite() && !defined('WP_INSTALLING') ) { 40 $ms_locale = get_option('WPLANG'); 41 if ( $ms_locale === false ) 42 $ms_locale = get_site_option('WPLANG'); 43 44 if ( $ms_locale !== false ) 45 $locale = $ms_locale; 46 } 37 47 38 48 if ( empty( $locale ) )
Note: See TracChangeset
for help on using the changeset viewer.