Make WordPress Core

Changeset 61035


Ignore:
Timestamp:
10/21/2025 01:58:59 PM (6 months ago)
Author:
jorbin
Message:

Coding Standards: Use preincrment.

Sorry Dennis.

Introduced in [60939].
See #63168.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-block-processor.php

    r60939 r61035  
    13331333            $closer_must_be_at = $dashes_at + 2 + strspn( $text, '-', $dashes_at + 2 );
    13341334            if ( $closer_must_be_at < $search_end && '!' === $text[ $closer_must_be_at ] ) {
    1335                 $closer_must_be_at++;
     1335                ++$closer_must_be_at;
    13361336            }
    13371337
     
    13401340            }
    13411341
    1342             $now_at++;
     1342            ++$now_at;
    13431343        }
    13441344
Note: See TracChangeset for help on using the changeset viewer.