Skip to content
Merged
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 includes/wp-admin/class-settings-fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ public static function render_blocklist_subscriptions_field() {
<button type="button" class="button add-blocklist-subscription-btn" data-url="<?php echo \esc_attr( Blocklist_Subscriptions::IFTAS_DNI_URL ); ?>">
<?php \esc_html_e( 'Subscribe to IFTAS DNI List', 'activitypub' ); ?>
</button>
<?php \esc_html_e( 'A curated list of the worst actors on the fediverse.', 'activitypub' ); ?>
<?php echo \wp_kses_post( \__( 'Domains <a href="https://about.iftas.org/" target="_blank" rel="noopener">IFTAS</a> recommends not federating with.', 'activitypub' ) ); ?>
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The link opens in a new tab but lacks screen reader context. Consider adding aria-label or visible text indicating the link opens externally, such as '(opens in new tab)' or using an icon with appropriate alt text.

Suggested change
<?php echo \wp_kses_post( \__( 'Domains <a href="https://about.iftas.org/" target="_blank" rel="noopener">IFTAS</a> recommends not federating with.', 'activitypub' ) ); ?>
<?php echo \wp_kses_post( \__( 'Domains <a href="https://about.iftas.org/" target="_blank" rel="noopener">IFTAS</a> recommends not federating with. (opens in new tab)', 'activitypub' ) ); ?>

Copilot uses AI. Check for mistakes.
</p>
<?php endif; ?>
</div>
Expand Down