Make WordPress Core


Ignore:
Timestamp:
07/17/2022 02:16:27 AM (17 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use MINUTE_IN_SECONDS where appropriate.

This aims to clarify the time units for some timeout or expiration values.

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

See #55647.

File:
1 edited

Legend:

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

    r53458 r53714  
    20082008     */
    20092009    if ( ! defined( 'FS_CONNECT_TIMEOUT' ) ) {
    2010         define( 'FS_CONNECT_TIMEOUT', 30 );
     2010        define( 'FS_CONNECT_TIMEOUT', MINUTE_IN_SECONDS / 2 );
    20112011    }
    20122012    if ( ! defined( 'FS_TIMEOUT' ) ) {
    2013         define( 'FS_TIMEOUT', 30 );
     2013        define( 'FS_TIMEOUT', MINUTE_IN_SECONDS / 2 );
    20142014    }
    20152015
Note: See TracChangeset for help on using the changeset viewer.