Changeset 32471 for trunk/src/wp-admin/includes/class-wp-press-this.php
- Timestamp:
- 05/09/2015 06:26:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-press-this.php
r32143 r32471 281 281 282 282 } else if ( is_wp_error( $source_tmp_file ) ) { 283 $source_content = new WP_Error( 'upload-error', sprintf( __( 'E rror: %s' ), sprintf( __( 'Could not download the source URL (native error: %s).' ), $source_tmp_file->get_error_message() ) ) );283 $source_content = new WP_Error( 'upload-error', sprintf( __( 'ERROR: %s' ), sprintf( __( 'Could not download the source URL (native error: %s).' ), $source_tmp_file->get_error_message() ) ) ); 284 284 } else if ( ! file_exists( $source_tmp_file ) ) { 285 $source_content = new WP_Error( 'no-local-file', sprintf( __( 'E rror: %s' ), __( 'Could not save or locate the temporary download file for the source URL.' ) ) );285 $source_content = new WP_Error( 'no-local-file', sprintf( __( 'ERROR: %s' ), __( 'Could not save or locate the temporary download file for the source URL.' ) ) ); 286 286 } 287 287
Note: See TracChangeset
for help on using the changeset viewer.