summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-10-29 12:29:45 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-10-29 12:29:45 -0700
commit33e476a1fdabb335e2bc8d9869d5a770460b3b55 (patch)
tree9a3b19c4e1e1cd6f03742b080841854dbbec70fe /modules/menu
parente56afba266a851fc7f9cf29edd831b7ee9a4802e (diff)
downloadbrdo-33e476a1fdabb335e2bc8d9869d5a770460b3b55.tar.gz
brdo-33e476a1fdabb335e2bc8d9869d5a770460b3b55.tar.bz2
Issue #1021064 by montesq, barraponto, cwells73, mejd: Fixed No Main Links causes error message in form description to set Secondary Links.
Diffstat (limited to 'modules/menu')
-rw-r--r--modules/menu/menu.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.admin.inc b/modules/menu/menu.admin.inc
index d9b98ccbe..5e8f08d57 100644
--- a/modules/menu/menu.admin.inc
+++ b/modules/menu/menu.admin.inc
@@ -679,7 +679,7 @@ function menu_configure() {
'#empty_option' => t('No Secondary links'),
'#options' => $menu_options,
'#tree' => FALSE,
- '#description' => t('Select the source for the Secondary links. An advanced option allows you to use the same source for both Main links (currently %main) and Secondary links: if your source menu has two levels of hierarchy, the top level menu links will appear in the Main links, and the children of the active link will appear in the Secondary links.', array('%main' => $main ? $menu_options[$main] : 'none')),
+ '#description' => t('Select the source for the Secondary links. An advanced option allows you to use the same source for both Main links (currently %main) and Secondary links: if your source menu has two levels of hierarchy, the top level menu links will appear in the Main links, and the children of the active link will appear in the Secondary links.', array('%main' => $main ? $menu_options[$main] : t('none'))),
);
return system_settings_form($form);