Changeset 12533 for trunk/wp-admin/includes/update-core.php
- Timestamp:
- 12/24/2009 09:46:57 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/update-core.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/update-core.php
r12450 r12533 236 236 237 237 // Sanity check the unzipped distribution 238 apply_filters('update_feedback', __('Verifying the unpacked files '));238 apply_filters('update_feedback', __('Verifying the unpacked files…')); 239 239 if ( !$wp_filesystem->exists($from . '/wordpress/wp-settings.php') || !$wp_filesystem->exists($from . '/wordpress/wp-admin/admin.php') || 240 240 !$wp_filesystem->exists($from . '/wordpress/wp-includes/functions.php') ) { … … 243 243 } 244 244 245 apply_filters('update_feedback', __('Installing the latest version '));245 apply_filters('update_feedback', __('Installing the latest version…')); 246 246 247 247 // Create maintenance file to signal that we are upgrading … … 268 268 269 269 // Upgrade DB with separate request 270 apply_filters('update_feedback', __('Upgrading database '));270 apply_filters('update_feedback', __('Upgrading database…')); 271 271 $db_upgrade_url = admin_url('upgrade.php?step=upgrade_db'); 272 272 wp_remote_post($db_upgrade_url, array('timeout' => 60));
Note: See TracChangeset
for help on using the changeset viewer.