Changeset 54795 for branches/6.1/src/wp-includes/load.php
- Timestamp:
- 11/10/2022 07:19:11 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.1/src/wp-includes/load.php
r54637 r54795 1393 1393 foreach ( $locations as $location ) { 1394 1394 if ( file_exists( $location . '/' . $locale . '.mo' ) ) { 1395 load_textdomain( 'default', $location . '/' . $locale . '.mo' );1395 load_textdomain( 'default', $location . '/' . $locale . '.mo', $locale ); 1396 1396 if ( defined( 'WP_SETUP_CONFIG' ) && file_exists( $location . '/admin-' . $locale . '.mo' ) ) { 1397 load_textdomain( 'default', $location . '/admin-' . $locale . '.mo' );1397 load_textdomain( 'default', $location . '/admin-' . $locale . '.mo', $locale ); 1398 1398 } 1399 1399 break 2;
Note: See TracChangeset
for help on using the changeset viewer.