Make WordPress Core

Changeset 55824


Ignore:
Timestamp:
05/18/2023 12:34:22 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Docs: Fix a few more typos in inline comments.

Follow-up to [9117], [11005], [12097], [18632], [26192], [55823].

Props Presskopp.
See #58334, #57840.

Location:
trunk/src/wp-admin
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-plugin-upgrader.php

    r55720 r55824  
    239239        );
    240240
    241         // Cleanup our hooks, in case something else does a upgrade on this connection.
     241        // Cleanup our hooks, in case something else does an upgrade on this connection.
    242242        remove_action( 'upgrader_process_complete', 'wp_clean_plugins_cache', 9 );
    243243        remove_filter( 'upgrader_pre_install', array( $this, 'deactivate_plugin_before_upgrade' ) );
     
    387387        $this->skin->footer();
    388388
    389         // Cleanup our hooks, in case something else does a upgrade on this connection.
     389        // Cleanup our hooks, in case something else does an upgrade on this connection.
    390390        remove_filter( 'upgrader_clear_destination', array( $this, 'delete_old_plugin' ) );
    391391
  • trunk/src/wp-admin/includes/class-theme-upgrader.php

    r55720 r55824  
    488488        $this->skin->footer();
    489489
    490         // Cleanup our hooks, in case something else does a upgrade on this connection.
     490        // Cleanup our hooks, in case something else does an upgrade on this connection.
    491491        remove_filter( 'upgrader_pre_install', array( $this, 'current_before' ) );
    492492        remove_filter( 'upgrader_post_install', array( $this, 'current_after' ) );
  • trunk/src/wp-admin/includes/class-wp-filesystem-base.php

    r55714 r55824  
    399399
    400400    /**
    401      * Converts *nix-style file permissions to a octal number.
     401     * Converts *nix-style file permissions to an octal number.
    402402     *
    403403     * Converts '-rw-r--r--' to 0644
  • trunk/src/wp-admin/includes/update-core.php

    r55703 r55824  
    14971497                    $_result = copy_dir( $from . $distro . 'wp-content/' . $file, $dest . $filename );
    14981498
    1499                     // If a error occurs partway through this final step, keep the error flowing through, but keep process going.
     1499                    /*
     1500                     * If an error occurs partway through this final step,
     1501                     * keep the error flowing through, but keep the process going.
     1502                     */
    15001503                    if ( is_wp_error( $_result ) ) {
    15011504                        if ( ! is_wp_error( $result ) ) {
  • trunk/src/wp-admin/update-core.php

    r55625 r55824  
    10201020
    10211021if ( 'upgrade-core' === $action ) {
    1022     // Force a update check when requested.
     1022    // Force an update check when requested.
    10231023    $force_check = ! empty( $_GET['force-check'] );
    10241024    wp_version_check( array(), $force_check );
Note: See TracChangeset for help on using the changeset viewer.