Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/wp-admin/css/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -1572,7 +1572,7 @@ table.form-table td .updated p {
margin: 1.5em 0;
}

.wp-privacy-request-form input {
.wp-privacy-request-form input[type="text"] {
margin: 0;
}
Comment thread
joedolson marked this conversation as resolved.

Expand Down
4 changes: 2 additions & 2 deletions src/wp-admin/erase-personal-data.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@
<th scope="row">
<?php _e( 'Confirmation email' ); ?>
</th>
<td>
<td>
<input type="checkbox" name="send_confirmation_email" id="send_confirmation_email" value="1" checked="checked" />
<label for="send_confirmation_email">
<input type="checkbox" name="send_confirmation_email" id="send_confirmation_email" value="1" checked="checked" />
<?php _e( 'Send personal data erasure confirmation email.' ); ?>
</label>
</td>
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/export-personal-data.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@
<?php _e( 'Confirmation email' ); ?>
</th>
<td>
<input type="checkbox" name="send_confirmation_email" id="send_confirmation_email" value="1" checked="checked" />
<label for="send_confirmation_email">
<input type="checkbox" name="send_confirmation_email" id="send_confirmation_email" value="1" checked="checked" />
<?php _e( 'Send personal data export confirmation email.' ); ?>
</label>
</td>
Expand Down
Loading