Make WordPress Core


Ignore:
Timestamp:
07/24/2015 05:26:09 PM (9 years ago)
Author:
wonderboymusic
Message:

Pinking shears.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r33359 r33411  
    634634
    635635        // 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 ) {
    637637            if ( false !== strpos( $textarr[$i], $needle ) ) {
    638638                $textarr[$i] = str_replace( $needle, $replace, $textarr[$i] );
     
    645645
    646646        // 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 ) {
    648648            foreach ( $needles as $needle ) {
    649649                if ( false !== strpos( $textarr[$i], $needle ) ) {
Note: See TracChangeset for help on using the changeset viewer.