Changeset 45394
- Timestamp:
- 05/24/2019 01:07:52 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r45345 r45394 743 743 744 744 /* 745 * This may not have orig nially been intended to be overrideable,745 * This may not have originally been intended to be overridable, 746 746 * but historically has been. 747 747 */ … … 1156 1156 * @param string $filename_for_errors A friendly filename for errors. Optional. 1157 1157 * 1158 * @return bool|WP_Error true on success, false if verifica iton 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. 1159 1159 */ 1160 1160 function verify_file_signature( $filename, $signatures, $filename_for_errors = false ) { … … 2528 2528 2529 2529 /** 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. 2531 2531 * @see wp_privacy_personal_data_export_page 2532 2532 * @since 4.9.6 … … 2544 2544 /* Do some simple checks on the shape of the response from the exporter. 2545 2545 * 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. 2547 2547 */ 2548 2548 if ( ! is_array( $response ) ) {
Note: See TracChangeset
for help on using the changeset viewer.