Changeset 49236 for trunk/src/wp-settings.php
- Timestamp:
- 10/20/2020 04:03:58 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r49226 r49236 153 153 // Load the L10n library. 154 154 require_once ABSPATH . WPINC . '/l10n.php'; 155 require_once ABSPATH . WPINC . '/class-wp-textdomain-registry.php'; 155 156 require_once ABSPATH . WPINC . '/class-wp-locale.php'; 156 157 require_once ABSPATH . WPINC . '/class-wp-locale-switcher.php'; … … 302 303 $GLOBALS['wp_embed'] = new WP_Embed(); 303 304 305 /** 306 * WordPress Textdomain Registry object. 307 * 308 * Used to support just-in-time translations for manually loaded textdomains. 309 * 310 * @since 5.6.0 311 * 312 * @global WP_Locale_Switcher $wp_locale_switcher WordPress Textdomain Registry. 313 */ 314 $GLOBALS['wp_textdomain_registry'] = new WP_Textdomain_Registry(); 315 304 316 // Load multisite-specific files. 305 317 if ( is_multisite() ) {
Note: See TracChangeset
for help on using the changeset viewer.