Changeset 56031 for trunk/src/wp-includes/class-wp-editor.php
- Timestamp:
- 06/26/2023 10:15:04 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r55988 r56031 572 572 // Force urlencoding of commas. 573 573 foreach ( $editor_styles as $key => $url ) { 574 if ( str pos( $url, ',' ) !== false) {574 if ( str_contains( $url, ',' ) ) { 575 575 $editor_styles[ $key ] = str_replace( ',', '%2C', $url ); 576 576 }
Note: See TracChangeset
for help on using the changeset viewer.