Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (17 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use pre-increment/decrement for stand-alone statements.

Note: This is enforced by WPCS 3.0.0:

  1. There should be no space between an increment/decrement operator and the variable it applies to.
  2. Pre-increment/decrement should be favoured over post-increment/decrement for stand-alone statements. “Pre” will in/decrement and then return, “post” will return and then in/decrement. Using the “pre” version is slightly more performant and can prevent future bugs when code gets moved around.

References:

Props jrf.
See #59161, #58831.

File:
1 edited

Legend:

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

    r56482 r56549  
    13171317            }
    13181318            if ( empty( $b_roles ) ) {
    1319                 $avail_roles['none']++;
     1319                ++$avail_roles['none'];
    13201320            }
    13211321            foreach ( $b_roles as $b_role => $val ) {
    13221322                if ( isset( $avail_roles[ $b_role ] ) ) {
    1323                     $avail_roles[ $b_role ]++;
     1323                    ++$avail_roles[ $b_role ];
    13241324                } else {
    13251325                    $avail_roles[ $b_role ] = 1;
     
    21782178            $alt_user_nicename   = mb_substr( $user_nicename, 0, $base_length ) . "-$suffix";
    21792179            $user_nicename_check = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->users WHERE user_nicename = %s AND user_login != %s LIMIT 1", $alt_user_nicename, $user_login ) );
    2180             $suffix++;
     2180            ++$suffix;
    21812181        }
    21822182        $user_nicename = $alt_user_nicename;
Note: See TracChangeset for help on using the changeset viewer.