summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-02 03:33:36 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-02 03:33:36 +0000
commit39c302eec0a64183207bbbf7cc6bb7adfae16ef7 (patch)
treeb2b475c1340674e29c410d453bebdf5f85ca4b80 /install.php
parent2837657941ec65030558a5792a483c424c9e6638 (diff)
downloadbrdo-39c302eec0a64183207bbbf7cc6bb7adfae16ef7.tar.gz
brdo-39c302eec0a64183207bbbf7cc6bb7adfae16ef7.tar.bz2
#475596 by emmajane, catch, yoroy, et al. Move default welcome message to help system.
Diffstat (limited to 'install.php')
-rw-r--r--install.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/install.php b/install.php
index 82dcfe9d8..ec158f3e6 100644
--- a/install.php
+++ b/install.php
@@ -800,6 +800,7 @@ function install_tasks($profile, $task) {
$messages = drupal_set_message();
$output = '<p>' . st('Congratulations, @drupal has been successfully installed.', array('@drupal' => drupal_install_profile_name())) . '</p>';
$output .= '<p>' . (isset($messages['error']) ? st('Please review the messages above before continuing on to <a href="@url">your new site</a>.', array('@url' => url(''))) : st('You may now visit <a href="@url">your new site</a>.', array('@url' => url('')))) . '</p>';
+ $output .= '<p>' . st('For more information on configuring Drupal, please refer to the <a href="@help">help section</a>.', array('@help' => url('admin/help'))) . '</p>';
$task = 'done';
}