From 1ceb716ae0757ed69defb8fd6de83bfe8d02e2c3 Mon Sep 17 00:00:00 2001 From: David Baumwald Date: Thu, 10 Mar 2022 19:19:50 +0000 Subject: [PATCH] Privacy: Fix "Retry" action after a personal data export failure. When exporting personal data for a user request, if the export fails for any reason, a "Retry" link is displayed inline. However, up to this point, clicking this link performed no action. This change adds the `export-personal-data-handle` CSS class to the link to make sure it's picked up by the same delegated listener as the initial action. Clicking this link will now retry the export. Props hellofromTonya, nomnom99, rafiahmedd, SergeyBiryukov, hasanuzzamanshamim. Fixes #53032. git-svn-id: https://develop.svn.wordpress.org/trunk@52846 602fd350-edb4-49c9-b593-d223f7449a82 --- .../class-wp-privacy-data-export-requests-list-table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php b/src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php index 7e8361a989..aa68c84649 100644 --- a/src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php +++ b/src/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php @@ -60,7 +60,7 @@ class WP_Privacy_Data_Export_Requests_List_Table extends WP_Privacy_Requests_Tab $download_data_markup .= '' . '' . '' . - ''; + ''; $download_data_markup .= '';