Changeset 53132
- Timestamp:
- 04/11/2022 11:48:58 AM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-core-upgrader.php
r53131 r53132 158 158 $wp_filesystem->delete( $working_dir, true ); 159 159 WP_Upgrader::release_lock( 'core_updater' ); 160 return new WP_Error( 'copy_failed_for_update_core_file', __( 'The update can 160 return new WP_Error( 'copy_failed_for_update_core_file', __( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ), 'wp-admin/includes/update-core.php' ); 161 161 } 162 162 $wp_filesystem->chmod( $wp_dir . 'wp-admin/includes/update-core.php', FS_CHMOD_FILE ); -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r53131 r53132 163 163 $this->strings['mkdir_failed'] = __( 'Could not create directory.' ); 164 164 $this->strings['incompatible_archive'] = __( 'The package could not be installed.' ); 165 $this->strings['files_not_writable'] = __( 'The update can 165 $this->strings['files_not_writable'] = __( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ); 166 166 167 167 $this->strings['maintenance_start'] = __( 'Enabling Maintenance mode…' ); -
trunk/src/wp-admin/includes/update-core.php
r53131 r53132 995 995 return new WP_Error( 996 996 'copy_failed_for_version_file', 997 __( 'The update can 997 __( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ), 998 998 'wp-includes/version.php' 999 999 ); -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r53131 r53132 6964 6964 $title = isset( $matchtitle[1] ) ? $matchtitle[1] : ''; 6965 6965 if ( empty( $title ) ) { 6966 return $this->pingback_error( 32, __( 'A title on that page can 6966 return $this->pingback_error( 32, __( 'A title on that page cannot be found.' ) ); 6967 6967 } 6968 6968
Note: See TracChangeset
for help on using the changeset viewer.