diff --git a/update.php b/update.php
index 9e13b07a69ebd0e7..be54cc18c28bdff7 100644
--- a/update.php
+++ b/update.php
@@ -463,13 +463,16 @@ function update_results_page() {
function update_info_page() {
update_task_list('info');
drupal_set_title('Drupal database update');
- $output = "
\n";
- $output .= "- Use this script to upgrade an existing Drupal installation. You don't need this script when installing Drupal from scratch.
";
- $output .= "- Before doing anything, backup your database. This process will change your database and its values, and some things might get lost.
\n";
- $output .= "- Update your Drupal sources, check the notes below and run the database upgrade script. Don't upgrade your database twice as it may cause problems.
\n";
- $output .= "- Go through the various administration pages to change the existing and new settings to your liking.
\n";
- $output .= "
";
- $output .= 'For more help, see the Installation and upgrading handbook. If you are unsure what these terms mean you should probably contact your hosting provider.
';
+ $output = 'Use this utility to update your database whenever a new release of Drupal or a module is installed.
For more detailed information, see the Installation and upgrading handbook. If you are unsure what these terms mean you should probably contact your hosting provider.
';
+ $output .= "\n";
+ $output .= "- Back up your database. This process will change your database values and in case of emergency you may need to revert to a backup.
\n";
+ $output .= "- Back up your code. Hint: when backing up module code, do not leave that backup in the 'modules' or 'sites/*/modules' directories as this may confuse Drupal's auto-discovery mechanism.
\n";
+ $output .= '- Put your site into maintenance mode.
'."\n";
+ $output .= "- Install your new files in the appropriate location, as described in the handbook.
\n";
+ $output .= "
\n";
+ $output .= "When you have performed the steps above, you may proceed.
\n";
+ $output .= '';
+ $output .= "\n";
return $output;
}