From 0352a5077ca5ce66bf48ec526f2c6a3c3c3162ea Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 24 May 2010 15:33:59 +0000 Subject: [PATCH] Help for Updates screen. Props jane. see #13467 git-svn-id: http://svn.automattic.com/wordpress/trunk@14837 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index da80e9b69..b954e15c9 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -374,6 +374,11 @@ if ( 'do-plugin-upgrade' == $action && !isset($_GET['plugins']) && !isset($_POST $title = __('WordPress Updates'); $parent_file = 'tools.php'; +add_contextual_help($current_screen, '

' . __('This screen lets you update to the latest version of WordPress as well as update your themes and plugins from the WordPress.org repository. When updates are available, the number of available updates will appear in a bubble on the left hand menu as a notification. It is very important to keep your WordPress installation up to date for security reasons, so when you see a number appear, make sure you take the time to update, which is an easy process.') . '

' . + '

' . __('Updating your WordPress installation is a simple one-click procedure; just click on the Update button when it says a new version is available. ') . '

' . + '

' . __('To upgrade themes or plugins from this screen, use the checkboxes to make your selection and click on the appropriate Update button. Check the box at the top of the Themes or Plugins section to select all and update them all at once.') . '

' +); + if ( 'upgrade-core' == $action ) { wp_version_check(); require_once('./admin-header.php');