Changeset 52340 for trunk/src/wp-includes/block-template-utils.php
- Timestamp:
- 12/07/2021 06:36:29 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-template-utils.php
r52332 r52340 914 914 function wp_generate_block_templates_export_file() { 915 915 if ( ! class_exists( 'ZipArchive' ) ) { 916 return new WP_Error( __( 'Zip Export not supported.' ) );916 return new WP_Error( 'missing_zip_package', __( 'Zip Export not supported.' ) ); 917 917 } 918 918 … … 922 922 $zip = new ZipArchive(); 923 923 if ( true !== $zip->open( $filename, ZipArchive::CREATE ) ) { 924 return new WP_Error( __( 'Unable to open export file (archive) for writing.' ) );924 return new WP_Error( 'unable_to_create_zip', __( 'Unable to open export file (archive) for writing.' ) ); 925 925 } 926 926
Note: See TracChangeset
for help on using the changeset viewer.