Make WordPress Core

Changeset 45394


Ignore:
Timestamp:
05/24/2019 01:07:52 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Docs: Fix typos in DocBlocks and comments in wp-admin/includes/file.php.

Props mukesh27.
Fixes #47026.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/file.php

    r45345 r45394  
    743743
    744744    /*
    745      * This may not have orignially been intended to be overrideable,
     745     * This may not have originally been intended to be overridable,
    746746     * but historically has been.
    747747     */
     
    11561156 * @param string       $filename_for_errors A friendly filename for errors. Optional.
    11571157 *
    1158  * @return bool|WP_Error true on success, false if verificaiton not attempted, or WP_Error describing an error condition.
     1158 * @return bool|WP_Error true on success, false if verification not attempted, or WP_Error describing an error condition.
    11591159 */
    11601160function verify_file_signature( $filename, $signatures, $filename_for_errors = false ) {
     
    25282528
    25292529/**
    2530  * Intercept personal data exporter page ajax responses in order to assemble the personal data export file.
     2530 * Intercept personal data exporter page Ajax responses in order to assemble the personal data export file.
    25312531 * @see wp_privacy_personal_data_export_page
    25322532 * @since 4.9.6
     
    25442544    /* Do some simple checks on the shape of the response from the exporter.
    25452545     * If the exporter response is malformed, don't attempt to consume it - let it
    2546      * pass through to generate a warning to the user by default ajax processing.
     2546     * pass through to generate a warning to the user by default Ajax processing.
    25472547     */
    25482548    if ( ! is_array( $response ) ) {
Note: See TracChangeset for help on using the changeset viewer.