summaryrefslogtreecommitdiff
path: root/modules/menu/menu.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-11-23 22:20:41 +0000
committerDries Buytaert <dries@buytaert.net>2004-11-23 22:20:41 +0000
commit9574766ad8f8810baf42a81ae105984254f0fc0a (patch)
tree12a5015957b5d6cdb3c4f24680a5bf23bab0e67c /modules/menu/menu.module
parente19a3cf42d73942e37ca644f8ba5fa271b983e3d (diff)
downloadbrdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.gz
brdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.bz2
- Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve consistency.
Diffstat (limited to 'modules/menu/menu.module')
-rw-r--r--modules/menu/menu.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module
index d2fc770a5..ab080700a 100644
--- a/modules/menu/menu.module
+++ b/modules/menu/menu.module
@@ -60,11 +60,11 @@ function menu_help($section) {
case 'admin/modules#description':
return t('Allows administrators to customize the site navigation menu.');
case 'admin/menu':
- return t('Select an operation from the list to move, change, or delete a menu item.');
+ return t('<p>Select an operation from the list to move, change, or delete a menu item.</p>');
case 'admin/menu/menu/add':
- return t('Enter the name for your new menu. Remember to enable the newly created block in the %blocks administration page.', array('%blocks' => l(t('blocks'), 'admin/block')));
+ return t('<p>Enter the name for your new menu. Remember to enable the newly created block in the %blocks administration page.</p>', array('%blocks' => l(t('blocks'), 'admin/block')));
case 'admin/menu/item/add':
- return t('Enter the title, path, position and the weight for your new menu item.');
+ return t('<p>Enter the title, path, position and the weight for your new menu item.</p>');
}
}