Make WordPress Core

Changeset 38719


Ignore:
Timestamp:
10/04/2016 06:56:02 AM (8 years ago)
Author:
afercia
Message:

Accessibility: Remove target=_blank from the old custom background/header help tabs links.

Stop taking control of users' browsers.

Props rianrietveld.
Fixes #38141. See #23432.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/custom-background.php

    r38672 r38719  
    9898        get_current_screen()->set_help_sidebar(
    9999            '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    100             '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Background_Screen" target="_blank">Documentation on Custom Background</a>' ) . '</p>' .
    101             '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     100            '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Background_Screen">Documentation on Custom Background</a>' ) . '</p>' .
     101            '<p>' . __( '<a href="https://wordpress.org/support/">Support Forums</a>' ) . '</p>'
    102102        );
    103103
  • trunk/src/wp-admin/custom-header.php

    r38672 r38719  
    125125        get_current_screen()->set_help_sidebar(
    126126            '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    127             '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Header_Screen" target="_blank">Documentation on Custom Header</a>' ) . '</p>' .
    128             '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
     127            '<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Header_Screen">Documentation on Custom Header</a>' ) . '</p>' .
     128            '<p>' . __( '<a href="https://wordpress.org/support/">Support Forums</a>' ) . '</p>'
    129129        );
    130130    }
Note: See TracChangeset for help on using the changeset viewer.