Make WordPress Core


Ignore:
Timestamp:
12/24/2009 09:46:57 AM (16 years ago)
Author:
westi
Message:

Consitent use of … Fixes #10374 props demetris.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/update-core.php

    r12450 r12533  
    236236
    237237    // Sanity check the unzipped distribution
    238     apply_filters('update_feedback', __('Verifying the unpacked files'));
     238    apply_filters('update_feedback', __('Verifying the unpacked files…'));
    239239    if ( !$wp_filesystem->exists($from . '/wordpress/wp-settings.php') || !$wp_filesystem->exists($from . '/wordpress/wp-admin/admin.php') ||
    240240        !$wp_filesystem->exists($from . '/wordpress/wp-includes/functions.php') ) {
     
    243243    }
    244244
    245     apply_filters('update_feedback', __('Installing the latest version'));
     245    apply_filters('update_feedback', __('Installing the latest version…'));
    246246
    247247    // Create maintenance file to signal that we are upgrading
     
    268268
    269269    // Upgrade DB with separate request
    270     apply_filters('update_feedback', __('Upgrading database'));
     270    apply_filters('update_feedback', __('Upgrading database…'));
    271271    $db_upgrade_url = admin_url('upgrade.php?step=upgrade_db');
    272272    wp_remote_post($db_upgrade_url, array('timeout' => 60));
Note: See TracChangeset for help on using the changeset viewer.