Changeset 43300 for branches/4.9/src/wp-admin/includes/file.php
- Timestamp:
- 05/21/2018 12:01:40 PM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/includes/file.php
r43285 r43300 1890 1890 $exports_url = wp_privacy_exports_url(); 1891 1891 1892 $result = wp_mkdir_p( $exports_dir ); 1893 if ( is_wp_error( $result ) ) { 1894 wp_send_json_error( $result->get_error_message() ); 1892 if ( ! wp_mkdir_p( $exports_dir ) ) { 1893 wp_send_json_error( __( 'Unable to create export folder.' ) ); 1895 1894 } 1896 1895
Note: See TracChangeset
for help on using the changeset viewer.