From 1146ebd4c61098cd077c0c409783b5d7f56b29c2 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Thu, 3 Oct 2013 06:54:13 +0100 Subject: [PATCH] Issue #1387964 by yoroy, themic8, realityloop, galooph: Fixed People miss the first section of the help overview page. --- core/modules/help/help.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/help/help.module b/core/modules/help/help.module index 3b239c6a8e8..80d517855eb 100644 --- a/core/modules/help/help.module +++ b/core/modules/help/help.module @@ -30,7 +30,8 @@ function help_menu() { function help_help($path, $arg) { switch ($path) { case 'admin/help': - $output = '

' . t('Follow these steps to set up and start using your website:') . '

'; + $output = '

' . t('Getting Started') . '

'; + $output .= '

' . t('Follow these steps to set up and start using your website:') . '

'; $output .= '
    '; $output .= '
  1. ' . t('Configure your website Once logged in, visit the administration section, where you can customize and configure all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/config'))) . '
  2. '; $output .= '
  3. ' . t('Enable additional functionality Next, visit the module list and enable features which suit your specific needs. You can find additional modules in the Drupal modules download section.', array('@modules' => url('admin/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '
  4. ';