Changes from trunk/src/wp-includes/formatting.php at r33624 to branches/4.3/src/wp-includes/formatting.php at r34024
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/src/wp-includes/formatting.php
r33624 r34024 597 597 598 598 // Restore newlines in all elements. 599 $pee = str_replace( " <!-- wpnl --> ", "\n", $pee ); 599 if ( false !== strpos( $pee, '<!-- wpnl -->' ) ) { 600 $pee = str_replace( array( ' <!-- wpnl --> ', '<!-- wpnl -->' ), "\n", $pee ); 601 } 600 602 601 603 return $pee;
Note: See TracChangeset
for help on using the changeset viewer.