- Timestamp:
- 05/21/2018 11:58:19 AM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/file.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r43284 r43299 2027 2027 $exports_url = wp_privacy_exports_url(); 2028 2028 2029 $result = wp_mkdir_p( $exports_dir ); 2030 if ( is_wp_error( $result ) ) { 2031 wp_send_json_error( $result->get_error_message() ); 2029 if ( ! wp_mkdir_p( $exports_dir ) ) { 2030 wp_send_json_error( __( 'Unable to create export folder.' ) ); 2032 2031 } 2033 2032
Note: See TracChangeset
for help on using the changeset viewer.