Make WordPress Core


Ignore:
Timestamp:
11/10/2022 07:34:13 PM (2 years ago)
Author:
ocean90
Message:

I18N: Revert [54795] from the 6.1 branch.

This will be added again once committed to trunk first.

See #57060.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/6.1/src/wp-includes/load.php

    r54795 r54796  
    13931393            foreach ( $locations as $location ) {
    13941394                if ( file_exists( $location . '/' . $locale . '.mo' ) ) {
    1395                     load_textdomain( 'default', $location . '/' . $locale . '.mo', $locale );
     1395                    load_textdomain( 'default', $location . '/' . $locale . '.mo' );
    13961396                    if ( defined( 'WP_SETUP_CONFIG' ) && file_exists( $location . '/admin-' . $locale . '.mo' ) ) {
    1397                         load_textdomain( 'default', $location . '/admin-' . $locale . '.mo', $locale );
     1397                        load_textdomain( 'default', $location . '/admin-' . $locale . '.mo' );
    13981398                    }
    13991399                    break 2;
Note: See TracChangeset for help on using the changeset viewer.