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-admin/edit.php

    r56460 r56549  
    125125
    126126                if ( wp_check_post_lock( $post_id ) ) {
    127                     $locked++;
     127                    ++$locked;
    128128                    continue;
    129129                }
     
    133133                }
    134134
    135                 $trashed++;
     135                ++$trashed;
    136136            }
    137137
     
    161161                }
    162162
    163                 $untrashed++;
     163                ++$untrashed;
    164164            }
    165165            $sendback = add_query_arg( 'untrashed', $untrashed, $sendback );
     
    186186                    }
    187187                }
    188                 $deleted++;
     188                ++$deleted;
    189189            }
    190190            $sendback = add_query_arg( 'deleted', $deleted, $sendback );
Note: See TracChangeset for help on using the changeset viewer.