summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-08 16:49:54 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-08 16:49:54 +0000
commit0707ce5472641080a4765c343f300f5834d5d498 (patch)
tree5cdb1959b4cf2bc3d7681aacc02da80f89316678 /modules/menu
parentd9323e65f7116a34f3ea2990f873017ebec2b110 (diff)
downloadbrdo-0707ce5472641080a4765c343f300f5834d5d498.tar.gz
brdo-0707ce5472641080a4765c343f300f5834d5d498.tar.bz2
- Patch #678570 by jhodgdon: help text improvements.
Diffstat (limited to 'modules/menu')
-rw-r--r--modules/menu/menu.module6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module
index 9d6745d63..7eaac9fb8 100644
--- a/modules/menu/menu.module
+++ b/modules/menu/menu.module
@@ -30,12 +30,10 @@ function menu_help($path, $arg) {
$output .= '</dl>';
return $output;
case 'admin/structure/menu/add':
- return '<p>' . t('Enter the name for your new menu. Remember to enable the newly created block in the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/structure/block'))) . '</p>';
- case 'admin/structure/menu/item/add':
- return '<p>' . t('Enter the title and path for your new menu link.') . '</p>';
+ return '<p>' . t('You can enable the newly-created block for this menu on the <a href="@blocks">Blocks administration page</a>.', array('@blocks' => url('admin/structure/block'))) . '</p>';
}
if ($path == 'admin/structure/menu' && module_exists('block')) {
- return '<p>' . t('Each menu has a corresponding block that is managed on the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/structure/block'))) . '</p>';
+ return '<p>' . t('Each menu has a corresponding block that is managed on the <a href="@blocks">Blocks administration page</a>.', array('@blocks' => url('admin/structure/block'))) . '</p>';
}
}