Make WordPress Core

Ticket #56980: 56980.4.diff

File 56980.4.diff, 816 bytes (added by SergeyBiryukov, 2 years ago)
  • src/wp-includes/formatting.php

     
    16011601
    16021602                // Unicode sequence normalization from NFD (Normalization Form Decomposed)
    16031603                // to NFC (Normalization Form [Pre]Composed), the encoding used in this function.
    1604                 if ( function_exists( 'normalizer_normalize' ) ) {
    1605                         if ( ! normalizer_is_normalized( $string, Normalizer::FORM_C ) ) {
    1606                                 $string = normalizer_normalize( $string, Normalizer::FORM_C );
     1604                if ( function_exists( 'normalizer_is_normalized' )
     1605                        && function_exists( 'normalizer_normalize' )
     1606                ) {
     1607                        if ( ! normalizer_is_normalized( $string ) ) {
     1608                                $string = normalizer_normalize( $string );
    16071609                        }
    16081610                }
    16091611