Changeset 57633
- Timestamp:
- 02/14/2024 07:25:56 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-text-diff-renderer-inline.php
r56547 r57633 25 25 * @return string 26 26 */ 27 public function _splitOnWords( $string, $newlineEscape = "\n" ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound 27 public function _splitOnWords( $string, $newlineEscape = "\n" ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound,WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase 28 28 $string = str_replace( "\0", '', $string ); 29 29 $words = preg_split( '/([^\w])/u', $string, -1, PREG_SPLIT_DELIM_CAPTURE ); 30 $words = str_replace( "\n", $newlineEscape, $words ); 30 $words = str_replace( "\n", $newlineEscape, $words ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase 31 31 return $words; 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.