Make WordPress Core

Changeset 19122


Ignore:
Timestamp:
11/02/2011 09:32:16 PM (14 years ago)
Author:
nacin
Message:

More s/add_help_sidebar/set_help_sidebar/. fixes #19020.

Location:
trunk/wp-admin
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network.php

    r19114 r19122  
    113113);
    114114
    115 get_current_screen()->add_help_sidebar(
     115get_current_screen()->set_help_sidebar(
    116116    '<p><strong>' . __('For more information:') . '</strong></p>' .
    117117    '<p>' . __('<a href="http://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' .
  • trunk/wp-admin/network/index.php

    r19114 r19122  
    3030);
    3131
    32 get_current_screen()->add_help_sidebar(
     32get_current_screen()->set_help_sidebar(
    3333    '<p><strong>' . __('For more information:') . '</strong></p>' .
    3434    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin" target="_blank">Documentation on the Network Admin</a>') . '</p>' .
  • trunk/wp-admin/network/settings.php

    r19114 r19122  
    3232);
    3333
    34 get_current_screen()->add_help_sidebar(
     34get_current_screen()->set_help_sidebar(
    3535    '<p><strong>' . __('For more information:') . '</strong></p>' .
    3636    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Settings_Screen" target="_blank">Documentation on Network Settings</a>') . '</p>' .
  • trunk/wp-admin/network/site-new.php

    r19114 r19122  
    2222);
    2323
    24 get_current_screen()->add_help_sidebar(
     24get_current_screen()->set_help_sidebar(
    2525    '<p><strong>' . __('For more information:') . '</strong></p>' .
    2626    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screens" target="_blank">Documentation on Site Management</a>') . '</p>' .
  • trunk/wp-admin/network/site-users.php

    r19114 r19122  
    2828);
    2929
    30 get_current_screen()->add_help_sidebar(
     30get_current_screen()->set_help_sidebar(
    3131    '<p><strong>' . __('For more information:') . '</strong></p>' .
    3232    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screens" target="_blank">Documentation on Site Management</a>') . '</p>' .
  • trunk/wp-admin/network/sites.php

    r19114 r19122  
    3838);
    3939
    40 get_current_screen()->add_help_sidebar(
     40get_current_screen()->set_help_sidebar(
    4141    '<p><strong>' . __('For more information:') . '</strong></p>' .
    4242    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screens" target="_blank">Documentation on Site Management</a>') . '</p>' .
  • trunk/wp-admin/network/themes.php

    r19114 r19122  
    210210);
    211211
    212 get_current_screen()->add_help_sidebar(
     212get_current_screen()->set_help_sidebar(
    213213    '<p><strong>' . __('For more information:') . '</strong></p>' .
    214214    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank">Documentation on Network Themes</a>') . '</p>' .
  • trunk/wp-admin/network/upgrade.php

    r19114 r19122  
    2525);
    2626
    27 get_current_screen()->add_help_sidebar(
     27get_current_screen()->set_help_sidebar(
    2828    '<p><strong>' . __('For more information:') . '</strong></p>' .
    2929    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Updates_Screen" target="_blank">Documentation on Update Network</a>') . '</p>' .
  • trunk/wp-admin/network/user-new.php

    r19114 r19122  
    2323);
    2424
    25 get_current_screen()->add_help_sidebar(
     25get_current_screen()->set_help_sidebar(
    2626    '<p><strong>' . __('For more information:') . '</strong></p>' .
    2727    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' .
  • trunk/wp-admin/network/users.php

    r19114 r19122  
    239239);
    240240
    241 get_current_screen()->add_help_sidebar(
     241get_current_screen()->set_help_sidebar(
    242242    '<p><strong>' . __('For more information:') . '</strong></p>' .
    243243    '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Users_Screen" target="_blank">Documentation on Network Users</a>') . '</p>' .
  • trunk/wp-admin/plugin-editor.php

    r19114 r19122  
    119119    );
    120120
    121     get_current_screen()->add_help_sidebar(
     121    get_current_screen()->set_help_sidebar(
    122122        '<p><strong>' . __('For more information:') . '</strong></p>' .
    123123        '<p>' . __('<a href="http://codex.wordpress.org/Plugins_Editor_Screen" target="_blank">Documentation on Editing Plugins</a>') . '</p>' .
  • trunk/wp-admin/plugin-install.php

    r19114 r19122  
    4343);
    4444
    45 get_current_screen()->add_help_sidebar(
     45get_current_screen()->set_help_sidebar(
    4646    '<p><strong>' . __('For more information:') . '</strong></p>' .
    4747    '<p>' . __('<a href="http://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .
  • trunk/wp-admin/theme-editor.php

    r19114 r19122  
    3232add_contextual_help($current_screen, $help);
    3333
    34 get_current_screen()->add_help_sidebar(
     34get_current_screen()->set_help_sidebar(
    3535    '<p><strong>' . __('For more information:') . '</strong></p>' .
    3636    '<p>' . __('<a href="http://codex.wordpress.org/Theme_Development" target="_blank">Documentation on Theme Development</a>') . '</p>' .
  • trunk/wp-admin/theme-install.php

    r19114 r19122  
    4545add_contextual_help($current_screen, $help);
    4646
    47 get_current_screen()->add_help_sidebar(
     47get_current_screen()->set_help_sidebar(
    4848    '<p><strong>' . __('For more information:') . '</strong></p>' .
    4949    '<p>' . __('<a href="http://codex.wordpress.org/Using_Themes#Adding_New_Themes" target="_blank">Documentation on Adding New Themes</a>') . '</p>' .
Note: See TracChangeset for help on using the changeset viewer.