Changeset 54814
- Timestamp:
- 11/11/2022 03:29:13 PM (7 months ago)
- Location:
- branches/6.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.1
-
branches/6.1/src/wp-includes/formatting.php
r54482 r54814 1602 1602 // Unicode sequence normalization from NFD (Normalization Form Decomposed) 1603 1603 // 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 ); 1607 1609 } 1608 1610 }
Note: See TracChangeset
for help on using the changeset viewer.