From 89580271f26bc78c801bc81f4dc8d6d785df2aa0 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Thu, 19 Nov 2009 19:00:45 +0000 Subject: #637370 by yoroy: Shorten the text on 'installation complete' screen. --- install.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'install.php') diff --git a/install.php b/install.php index d43485cf4..6e9e87ff4 100644 --- a/install.php +++ b/install.php @@ -1433,11 +1433,8 @@ function install_import_locales_remaining(&$install_state) { function install_finished(&$install_state) { drupal_set_title(st('@drupal installation complete', array('@drupal' => drupal_install_profile_name())), PASS_THROUGH); $messages = drupal_set_message(); - $output = '

' . st('Congratulations, @drupal has been successfully installed.', array('@drupal' => drupal_install_profile_name())) . '

'; - $output .= '

' . (isset($messages['error']) ? st('Review the messages above before continuing on to your new site.', array('@url' => url(''))) : st('You may now visit your new site.', array('@url' => url('')))) . '

'; - if (module_exists('help')) { - $output .= '

' . st('For more information on configuring Drupal, refer to the help section.', array('@help' => url('admin/help'))) . '

'; - } + $output = '

' . st('Congratulations, you installed @drupal!', array('@drupal' => drupal_install_profile_name())) . '

'; + $output .= '

' . (isset($messages['error']) ? st('Review the messages above before visiting your new site.', array('@url' => url(''))) : st('Visit your new site.', array('@url' => url('')))) . '

'; // Rebuild the module and theme data, in case any newly-installed modules // need to modify it via hook_system_info_alter(). We need to clear the -- cgit v1.2.3