diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-05-10 06:52:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-05-10 06:52:32 +0000 |
commit | a96ffc1185146676a05579471fb66d2ef1395284 (patch) | |
tree | e803644cd3dc71a9d3bb16db82c540b40cf80832 /modules/menu/menu.module | |
parent | 4791e6aa0c017448f4353f334df10b6b6a4fa0a0 (diff) | |
download | brdo-a96ffc1185146676a05579471fb66d2ef1395284.tar.gz brdo-a96ffc1185146676a05579471fb66d2ef1395284.tar.bz2 |
- Patch #256736 by flobruit: fixed bad HTML in help text. flobruit is on a patching spree!
Diffstat (limited to 'modules/menu/menu.module')
-rw-r--r-- | modules/menu/menu.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module index 060e3b948..0731f5fda 100644 --- a/modules/menu/menu.module +++ b/modules/menu/menu.module @@ -27,7 +27,7 @@ function menu_help($path, $arg) { case 'admin/build/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/build/block'))) . '</p>'; case 'admin/build/menu-customize/%': - return '<p>' . t('To rearrange menu items, grab a drag-and-drop handle under the <em>Menu item</em> column and drag the items (or group of items) to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.') . '<p>'; + return '<p>' . t('To rearrange menu items, grab a drag-and-drop handle under the <em>Menu item</em> column and drag the items (or group of items) to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.') . '</p>'; case 'admin/build/menu/item/add': return '<p>' . t('Enter the title and path for your new menu item.') . '</p>'; } |