summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-20 07:40:59 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-20 07:40:59 +0000
commitfd94ba27482d5a5c24292d3fef9ccc3797ba5706 (patch)
treec398ab11d697b73e9e4dd95ae12f7e416389ad86 /modules/menu
parent3d97a4668edf9897dcf8afee199f58c35a11587d (diff)
downloadbrdo-fd94ba27482d5a5c24292d3fef9ccc3797ba5706.tar.gz
brdo-fd94ba27482d5a5c24292d3fef9ccc3797ba5706.tar.bz2
#937850 by sivaji, bleen18: Fix PHP notice in menu settings page.
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 d2a81da6a..959c34982 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_options[$main])),
+ '#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' => $menu_options[$main])),
);
return system_settings_form($form);