Make WordPress Core

Changeset 57901


Ignore:
Timestamp:
03/31/2024 05:50:21 AM (5 weeks ago)
Author:
SergeyBiryukov
Message:

Docs: Fix a few typos in wp-admin/includes/class-pclzip.php.

Follow-up to [6779], [47123], [55827].

Props nithins53, nithi22, mukesh27.
Fixes #60818.

File:
1 edited

Legend:

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

    r57239 r57901  
    4949  // 1 : PclError external library error handling. By enabling this
    5050  //     you must ensure that you have included PclError library.
    51   // [2,...] : reserved for futur use
     51  // [2,...] : reserved for future use
    5252  if (!defined('PCLZIP_ERROR_EXTERNAL')) {
    5353    define( 'PCLZIP_ERROR_EXTERNAL', 0 );
     
    167167  define( 'PCLZIP_CB_PRE_ADD', 78003 );
    168168  define( 'PCLZIP_CB_POST_ADD', 78004 );
    169   /* For futur use
     169  /* For future use
    170170  define( 'PCLZIP_CB_PRE_LIST', 78005 );
    171171  define( 'PCLZIP_CB_POST_LIST', 78006 );
     
    13651365  // Description :
    13661366  //   This method check that the archive exists and is a valid zip archive.
    1367   //   Several level of check exists. (futur)
     1367  //   Several level of check exists. (future)
    13681368  // Parameters :
    13691369  //   $p_level : Level of check. Default 0.
    13701370  //              0 : Check the first bytes (magic codes) (default value))
    1371   //              1 : 0 + Check the central directory (futur)
    1372   //              2 : 1 + Check each file header (futur)
     1371  //              1 : 0 + Check the central directory (future)
     1372  //              2 : 1 + Check each file header (future)
    13731373  // Return Values :
    13741374  //   true on success,
     
    17491749        case PCLZIP_CB_PRE_ADD :
    17501750        case PCLZIP_CB_POST_ADD :
    1751         /* for futur use
     1751        /* for future use
    17521752        case PCLZIP_CB_PRE_DELETE :
    17531753        case PCLZIP_CB_POST_DELETE :
Note: See TracChangeset for help on using the changeset viewer.