Changeset 20619
- Timestamp:
- 04/27/2012 06:57:59 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r20520 r20619 1022 1022 $this->strings['unpack_package'] = __('Unpacking the update…'); 1023 1023 $this->strings['copy_failed'] = __('Could not copy files.'); 1024 $this->strings['copy_failed_space'] = __('Could not copy files. You may have run out of disk space.' ); 1024 1025 } 1025 1026 … … 1074 1075 require(ABSPATH . 'wp-admin/includes/update-core.php'); 1075 1076 1077 if ( ! function_exists( 'update_core' ) ) 1078 return new WP_Error( 'copy_failed_space', $this->strings['copy_failed_space'] ); 1079 1076 1080 return update_core($working_dir, $wp_dir); 1077 1081 }
Note: See TracChangeset
for help on using the changeset viewer.