Make WordPress Core

Ticket #38217: 38217.patch

File 38217.patch, 3.6 KB (added by rianrietveld, 9 years ago)
  • src/wp-admin/user-edit.php

     
    5151
    5252get_current_screen()->set_help_sidebar(
    5353    '<p><strong>' . __('For more information:') . '</strong></p>' .
    54     '<p>' . __('<a href="https://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' .
    55     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     54    '<p>' . __('<a href="https://codex.wordpress.org/Users_Your_Profile_Screen">Documentation on User Profiles</a>') . '</p>' .
     55    '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
    5656);
    5757
    5858$wp_http_referer = remove_query_arg( array( 'update', 'delete_count', 'user_id' ), $wp_http_referer );
  • src/wp-admin/user-new.php

     
    203203
    204204get_current_screen()->set_help_sidebar(
    205205    '<p><strong>' . __('For more information:') . '</strong></p>' .
    206     '<p>' . __('<a href="https://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' .
    207     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     206    '<p>' . __('<a href="https://codex.wordpress.org/Users_Add_New_Screen">Documentation on Adding New Users</a>') . '</p>' .
     207    '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
    208208);
    209209
    210210wp_enqueue_script('wp-ajax-response');
  • src/wp-admin/users.php

     
    6464
    6565get_current_screen()->set_help_sidebar(
    6666    '<p><strong>' . __('For more information:') . '</strong></p>' .
    67     '<p>' . __('<a href="https://codex.wordpress.org/Users_Screen" target="_blank">Documentation on Managing Users</a>') . '</p>' .
    68     '<p>' . __('<a href="https://codex.wordpress.org/Roles_and_Capabilities" target="_blank">Descriptions of Roles and Capabilities</a>') . '</p>' .
    69     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     67    '<p>' . __('<a href="https://codex.wordpress.org/Users_Screen">Documentation on Managing Users</a>') . '</p>' .
     68    '<p>' . __('<a href="https://codex.wordpress.org/Roles_and_Capabilities">Descriptions of Roles and Capabilities</a>') . '</p>' .
     69    '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
    7070);
    7171
    7272get_current_screen()->set_screen_reader_content( array(
  • src/wp-admin/widgets.php

     
    7171
    7272get_current_screen()->set_help_sidebar(
    7373        '<p><strong>' . __('For more information:') . '</strong></p>' .
    74         '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Widgets_Screen" target="_blank">Documentation on Widgets</a>') . '</p>' .
    75         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     74        '<p>' . __('<a href="https://codex.wordpress.org/Appearance_Widgets_Screen">Documentation on Widgets</a>') . '</p>' .
     75        '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
    7676);
    7777
    7878if ( ! current_theme_supports( 'widgets' ) ) {