Changeset 25797 for trunk/src/wp-admin/includes/update-core.php
- Timestamp:
- 10/15/2013 08:00:01 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/update-core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r25794 r25797 723 723 724 724 // Store package-relative paths (the key) of non-writable files in the WP_Error object. 725 $error_data = version_compare( $old_wp_version, '3.7-beta2', '>' ) ? array_keys( $files_not_writable ) : ''; 726 725 727 if ( $files_not_writable ) 726 return new WP_Error( 'files_not_writable', __( 'Could not copy file.' ), array_keys( $files_not_writable ));728 return new WP_Error( 'files_not_writable', __( 'Could not copy file.' ), $data ); 727 729 } 728 730 }
Note: See TracChangeset
for help on using the changeset viewer.