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 683ea69697..49f343d923 100644
a
|
b
|
class WP_Privacy_Data_Export_Requests_List_Table extends WP_Privacy_Requests_Tab |
99 | 99 | '">'; |
100 | 100 | |
101 | 101 | ?> |
102 | | <span class="export-personal-data-idle"><button type="button" class="button export-personal-data-handle"><?php _e( 'Send Export Link' ); ?></button></span> |
103 | | <span class="export-personal-data-processing button updating-message hidden"><?php _e( 'Sending Email...' ); ?></span> |
| 102 | <span class="export-personal-data-idle"><button type="button" class="button-link export-personal-data-handle"><?php _e( 'Send Export Link' ); ?></button></span> |
| 103 | <span class="export-personal-data-processing hidden"><?php _e( 'Sending Email...' ); ?></span> |
104 | 104 | <span class="export-personal-data-success success-message hidden"><?php _e( 'Email sent.' ); ?></span> |
105 | | <span class="export-personal-data-failed hidden"><?php _e( 'Email could not be sent.' ); ?> <button type="button" class="button export-personal-data-handle"><?php _e( 'Retry' ); ?></button></span> |
| 105 | <span class="export-personal-data-failed hidden"><?php _e( 'Email could not be sent.' ); ?> <button type="button" class="button-link export-personal-data-handle"><?php _e( 'Retry' ); ?></button></span> |
106 | 106 | <?php |
107 | 107 | |
108 | 108 | echo '</div>'; |
109 | 109 | break; |
110 | 110 | case 'request-failed': |
111 | | submit_button( __( 'Retry' ), 'secondary', 'privacy_action_email_retry[' . $item->ID . ']', false ); |
| 111 | echo '<button type="submit" class="button-link" name="privacy_action_email_retry[' . $item->ID . ']" id="privacy_action_email_retry[' . $item->ID . ']">' . __( 'Retry' ) . '</button>'; |
112 | 112 | break; |
113 | 113 | case 'request-completed': |
114 | 114 | echo '<a href="' . esc_url( |
… |
… |
class WP_Privacy_Data_Export_Requests_List_Table extends WP_Privacy_Requests_Tab |
122 | 122 | ), |
123 | 123 | 'bulk-privacy_requests' |
124 | 124 | ) |
125 | | ) . '" class="button">' . esc_html__( 'Remove request' ) . '</a>'; |
| 125 | ) . '">' . esc_html__( 'Remove request' ) . '</a>'; |
126 | 126 | break; |
127 | 127 | } |
128 | 128 | } |
diff --git a/src/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php b/src/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php
index 8e2efa0379..b26d61d82e 100644
a
|
b
|
class WP_Privacy_Data_Removal_Requests_List_Table extends WP_Privacy_Requests_Ta |
105 | 105 | '">'; |
106 | 106 | |
107 | 107 | ?> |
108 | | <span class="remove-personal-data-idle"><button type="button" class="button remove-personal-data-handle"><?php _e( 'Erase Personal Data' ); ?></button></span> |
109 | | <span class="remove-personal-data-processing button updating-message hidden"><?php _e( 'Erasing Data...' ); ?></span> |
| 108 | <span class="remove-personal-data-idle"><button type="button" class="button-link remove-personal-data-handle"><?php _e( 'Erase Personal Data' ); ?></button></span> |
| 109 | <span class="remove-personal-data-processing hidden"><?php _e( 'Erasing Data...' ); ?></span> |
110 | 110 | <span class="remove-personal-data-success success-message hidden" ><?php _e( 'Erasure completed.' ); ?></span> |
111 | | <span class="remove-personal-data-failed hidden"><?php _e( 'Data Erasure has failed.' ); ?> <button type="button" class="button remove-personal-data-handle"><?php _e( 'Retry' ); ?></button></span> |
| 111 | <span class="remove-personal-data-failed hidden"><?php _e( 'Data Erasure has failed.' ); ?> <button type="button" class="button-link remove-personal-data-handle"><?php _e( 'Retry' ); ?></button></span> |
112 | 112 | <?php |
113 | 113 | |
114 | 114 | echo '</div>'; |
115 | 115 | |
116 | 116 | break; |
117 | 117 | case 'request-failed': |
118 | | submit_button( __( 'Retry' ), 'secondary', 'privacy_action_email_retry[' . $item->ID . ']', false ); |
| 118 | echo '<button type="submit" class="button-link" name="privacy_action_email_retry[' . $item->ID . ']" id="privacy_action_email_retry[' . $item->ID . ']">' . __( 'Retry' ) . '</button>'; |
119 | 119 | break; |
120 | 120 | case 'request-completed': |
121 | 121 | echo '<a href="' . esc_url( |
… |
… |
class WP_Privacy_Data_Removal_Requests_List_Table extends WP_Privacy_Requests_Ta |
129 | 129 | ), |
130 | 130 | 'bulk-privacy_requests' |
131 | 131 | ) |
132 | | ) . '" class="button">' . esc_html__( 'Remove request' ) . '</a>'; |
| 132 | ) . '">' . esc_html__( 'Remove request' ) . '</a>'; |
133 | 133 | break; |
134 | 134 | } |
135 | 135 | } |