Make WordPress Core

Changeset 58021


Ignore:
Timestamp:
04/17/2024 08:19:59 PM (12 months ago)
Author:
joedolson
Message:

Help/About: Accessibility: Remove target="_blank" from data eraser links.

Remove target="_blank" from two links to developer resources on adding the personal data eraser to plugins in the Help info for the privacy screens. Also rectifies differences between the export and erase text for consistency and changes the order of paragraphs.

Props sabernhardt, joedolson.
Fixes #60097.

Location:
trunk/src/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/erase-personal-data.php

    r56734 r58021  
    5656        'content' =>
    5757                    '<p>' . __( 'Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.' ) . '</p>' .
    58                     '<p>' . __( 'If you are a plugin author, you can <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/" target="_blank">learn more about how to add support for the Personal Data Eraser to a plugin here</a>.' ) . '</p>' .
    59                     $privacy_policy_guide,
     58                    $privacy_policy_guide .
     59                    '<p>' . __( 'If you are a plugin author, you can learn more about <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/">how to add the Personal Data Eraser to a plugin</a>.' ) . '</p>',
    6060    )
    6161);
  • trunk/src/wp-admin/export-personal-data.php

    r55412 r58021  
    5656        'content' =>
    5757                    '<p>' . __( 'Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.' ) . '</p>' .
    58                     '<p>' . __( 'Plugin authors can <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-exporter-to-your-plugin/" target="_blank">learn more about how to add the Personal Data Exporter to a plugin here</a>.' ) . '</p>' .
    59                     $privacy_policy_guide,
     58                    $privacy_policy_guide .
     59                    '<p>' . __( 'If you are a plugin author, you can learn more about <a href="https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-exporter-to-your-plugin/">how to add the Personal Data Exporter to a plugin</a>.' ) . '</p>',
    6060    )
    6161);
Note: See TracChangeset for help on using the changeset viewer.