Changeset 53874 for trunk/src/wp-settings.php
- Timestamp:
- 08/11/2022 12:37:05 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r53152 r53874 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'; … … 335 336 $GLOBALS['wp_embed'] = new WP_Embed(); 336 337 338 /** 339 * WordPress Textdomain Registry object. 340 * 341 * Used to support just-in-time translations for manually loaded text domains. 342 * 343 * @since 6.1.0 344 * 345 * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry. 346 */ 347 $GLOBALS['wp_textdomain_registry'] = new WP_Textdomain_Registry(); 348 337 349 // Load multisite-specific files. 338 350 if ( is_multisite() ) {
Note: See TracChangeset
for help on using the changeset viewer.