From 5f4e012b2f1b4339d470c58ba58dae1c3efbd3ef Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 24 May 2010 15:33:59 +0000 Subject: [PATCH] Help for Updates screen. Props jane. see #13467 git-svn-id: https://develop.svn.wordpress.org/trunk@14837 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 da80e9b694..b954e15c97 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');