diff --git modules/menu/menu.module modules/menu/menu.module index ded4bd2..22b530c 100644 --- modules/menu/menu.module +++ modules/menu/menu.module @@ -32,6 +32,13 @@ function menu_help($path, $arg) { case 'admin/structure/menu/add': return '

' . t('You can enable the newly-created block for this menu on the Blocks administration page.', array('@blocks' => url('admin/structure/block'))) . '

'; } + if (!strncmp($path, 'admin/structure/menu/manage/', 28)) { + return '

' + . t('BIG FAT WARNING!') . '
' + . t('Any changes made here will eventually result in a broken menu system that can only be repaired by manual edits to the database.') + . '
' . t('There is no UI and no support for fixing a broken menu system.') + . '
' . t('YOU HAVE BEEN WARNED.') . '

'; + } if ($path == 'admin/structure/menu' && module_exists('block')) { return '

' . t('Each menu has a corresponding block that is managed on the Blocks administration page.', array('@blocks' => url('admin/structure/block'))) . '

'; }