summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-09-10 06:32:54 +0000
committerDries Buytaert <dries@buytaert.net>2009-09-10 06:32:54 +0000
commit82b51dff1d2fd90b439129c70b415d30a06d1bce (patch)
treeedfb79ed032aef5da4daeacac0800dc79f0ac73f /modules/help/help.module
parentd481f1cd364de615d274c2ccde68e37126f1959e (diff)
downloadbrdo-82b51dff1d2fd90b439129c70b415d30a06d1bce.tar.gz
brdo-82b51dff1d2fd90b439129c70b415d30a06d1bce.tar.bz2
- Patch #569282 by joshmiller: removal of Site configuration and fixed a number of broken links.
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index 525b173a7..e8a3c7389 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -40,7 +40,7 @@ function help_help($path, $arg) {
case 'admin/help':
$output = '<p>' . t('Please follow these steps to set up and start using your website:') . '</p>';
$output .= '<ol>';
- $output .= '<li>' . t('<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/settings'))) . '</li>';
+ $output .= '<li>' . t('<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/config'))) . '</li>';
$output .= '<li>' . t('<strong>Enable additional functionality</strong> Next, visit the <a href="@modules">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href="@download_modules">Drupal modules download section</a>.', array('@modules' => url('admin/config/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '</li>';
$output .= '<li>' . t('<strong>Customize your website design</strong> To change the "look and feel" of your website, visit the <a href="@themes">themes section</a>. You may choose from one of the included themes or download additional themes from the <a href="@download_themes">Drupal themes download section</a>.', array('@themes' => url('admin/appearance'), '@download_themes' => 'http://drupal.org/project/themes')) . '</li>';
$output .= '<li>' . t('<strong>Start posting content</strong> Finally, you can <a href="@content">add new content</a> for your website.', array('@content' => url('node/add'))) . '</li>';