Privacy: Normalize file paths in `wp_privacy_generate_personal_data_export_file()` to make sure Windows paths don't have their backslashes stripped.
Props xkon, pmbaldha. Fixes #43908. Built from https://develop.svn.wordpress.org/trunk@43234 git-svn-id: http://core.svn.wordpress.org/trunk@43063 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ae2b929294
commit
0a9de1ef2e
|
@ -2048,7 +2048,7 @@ function wp_privacy_generate_personal_data_export_file( $request_id ) {
|
||||||
$obscura = wp_generate_password( 32, false, false );
|
$obscura = wp_generate_password( 32, false, false );
|
||||||
$file_basename = 'wp-personal-data-file-' . $stripped_email . '-' . $obscura;
|
$file_basename = 'wp-personal-data-file-' . $stripped_email . '-' . $obscura;
|
||||||
$html_report_filename = $file_basename . '.html';
|
$html_report_filename = $file_basename . '.html';
|
||||||
$html_report_pathname = $exports_dir . $html_report_filename;
|
$html_report_pathname = wp_normalize_path( $exports_dir . $html_report_filename );
|
||||||
$file = fopen( $html_report_pathname, 'w' );
|
$file = fopen( $html_report_pathname, 'w' );
|
||||||
if ( false === $file ) {
|
if ( false === $file ) {
|
||||||
wp_send_json_error( __( 'Unable to open export file (HTML report) for writing.' ) );
|
wp_send_json_error( __( 'Unable to open export file (HTML report) for writing.' ) );
|
||||||
|
@ -2144,7 +2144,7 @@ function wp_privacy_generate_personal_data_export_file( $request_id ) {
|
||||||
$archive_url = $exports_url . $archive_filename;
|
$archive_url = $exports_url . $archive_filename;
|
||||||
|
|
||||||
update_post_meta( $request_id, '_export_file_url', $archive_url );
|
update_post_meta( $request_id, '_export_file_url', $archive_url );
|
||||||
update_post_meta( $request_id, '_export_file_path', $archive_pathname );
|
update_post_meta( $request_id, '_export_file_path', wp_normalize_path( $archive_pathname ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! empty( $archive_pathname ) && file_exists( $archive_pathname ) ) {
|
if ( ! empty( $archive_pathname ) && file_exists( $archive_pathname ) ) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-43232';
|
$wp_version = '5.0-alpha-43234';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue