Changeset 33411 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 07/24/2015 05:26:09 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r33359 r33411 634 634 635 635 // Loop through delimeters (elements) only. 636 for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { 636 for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { 637 637 if ( false !== strpos( $textarr[$i], $needle ) ) { 638 638 $textarr[$i] = str_replace( $needle, $replace, $textarr[$i] ); … … 645 645 646 646 // Loop through delimeters (elements) only. 647 for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { 647 for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { 648 648 foreach ( $needles as $needle ) { 649 649 if ( false !== strpos( $textarr[$i], $needle ) ) {
Note: See TracChangeset
for help on using the changeset viewer.