Changeset 57901 for trunk/src/wp-admin/includes/class-pclzip.php
- Timestamp:
- 03/31/2024 05:50:21 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-pclzip.php
r57239 r57901 49 49 // 1 : PclError external library error handling. By enabling this 50 50 // you must ensure that you have included PclError library. 51 // [2,...] : reserved for futur use51 // [2,...] : reserved for future use 52 52 if (!defined('PCLZIP_ERROR_EXTERNAL')) { 53 53 define( 'PCLZIP_ERROR_EXTERNAL', 0 ); … … 167 167 define( 'PCLZIP_CB_PRE_ADD', 78003 ); 168 168 define( 'PCLZIP_CB_POST_ADD', 78004 ); 169 /* For futur use169 /* For future use 170 170 define( 'PCLZIP_CB_PRE_LIST', 78005 ); 171 171 define( 'PCLZIP_CB_POST_LIST', 78006 ); … … 1365 1365 // Description : 1366 1366 // 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) 1368 1368 // Parameters : 1369 1369 // $p_level : Level of check. Default 0. 1370 1370 // 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) 1373 1373 // Return Values : 1374 1374 // true on success, … … 1749 1749 case PCLZIP_CB_PRE_ADD : 1750 1750 case PCLZIP_CB_POST_ADD : 1751 /* for futur use1751 /* for future use 1752 1752 case PCLZIP_CB_PRE_DELETE : 1753 1753 case PCLZIP_CB_POST_DELETE :
Note: See TracChangeset
for help on using the changeset viewer.