Make WordPress Core


Ignore:
Timestamp:
09/09/2022 08:14:43 AM (2 years ago)
Author:
audrasjb
Message:

Coding Standards: Clarify time units for various timeout or expiration values.

This changeset implements a clearer and more consistent timeout/duration/expiration format. It updates time durations used in various files, as per WordPress coding standards:

  • If the value can be represented as an integer (not a fractional) number of minutes (hours, etc.), use the appropriate constant (e.g.: MINUTE_IN_SECONDS) multiplied by that number.
  • Otherwise, keep the value as is and add a comment with the units for clarity.

Follow-up to [11823], [13177], [21996], [37747], [53714].

Props hztyfoon, audrasjb, arrasel403, krupalpanchal, GaryJ, SergeyBiryukov, peterwilsoncc, rudlinkon, costdev, robinwpdeveloper.
Fixes #56293.
See #55647.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-debug-data.php

    r53426 r54113  
    15981598        // We still want to limit it below.
    15991599        if ( empty( $max_execution_time ) ) {
    1600             $max_execution_time = 30;
     1600            $max_execution_time = 30; // 30 seconds.
    16011601        }
    16021602
Note: See TracChangeset for help on using the changeset viewer.