Make WordPress Core

Changeset 53714


Ignore:
Timestamp:
07/17/2022 02:16:27 AM (2 years 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.

Location:
trunk/src/wp-admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-filesystem-ftpext.php

    r52332 r53714  
    4141        // This class uses the timeout on a per-connection basis, others use it on a per-action basis.
    4242        if ( ! defined( 'FS_TIMEOUT' ) ) {
    43             define( 'FS_TIMEOUT', 240 );
     43            define( 'FS_TIMEOUT', 4 * MINUTE_IN_SECONDS );
    4444        }
    4545
  • 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
  • trunk/src/wp-admin/options-permalink.php

    r53713 r53714  
    204204    }
    205205
    206     set_transient( 'settings_errors', get_settings_errors(), 30 );
     206    set_transient( 'settings_errors', get_settings_errors(), MINUTE_IN_SECONDS / 2 );
    207207
    208208    wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
  • trunk/src/wp-admin/options.php

    r53476 r53714  
    345345        add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' );
    346346    }
    347     set_transient( 'settings_errors', get_settings_errors(), 30 );
     347
     348    set_transient( 'settings_errors', get_settings_errors(), MINUTE_IN_SECONDS / 2 );
    348349
    349350    // Redirect back to the settings page that was submitted.
Note: See TracChangeset for help on using the changeset viewer.