summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-04 04:43:58 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-04 04:43:58 +0000
commit5d001d94d64b1bd94e7b0064b72b06f68e0e2ed6 (patch)
treec2c2f95f0b50e0c5210e05aa7cfe18686e911d40 /modules/menu
parent417dd351856de0691907b723c2ae70f872a8dc0b (diff)
downloadbrdo-5d001d94d64b1bd94e7b0064b72b06f68e0e2ed6.tar.gz
brdo-5d001d94d64b1bd94e7b0064b72b06f68e0e2ed6.tar.bz2
#576916 follow-up by mooffie: Fixed some mistaken variable renaming.
Diffstat (limited to 'modules/menu')
-rw-r--r--modules/menu/menu.admin.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/menu/menu.admin.inc b/modules/menu/menu.admin.inc
index efda2de64..5522e5f93 100644
--- a/modules/menu/menu.admin.inc
+++ b/modules/menu/menu.admin.inc
@@ -664,19 +664,19 @@ function menu_configure() {
'#description' => t('Choose the menu to be the default in the menu options in the content authoring form.'),
);
- $main = variable_get('menu_main_links_source', 'navigation');
+ $main = variable_get('menu_main_links_source', 'main-menu');
$main_options = array_merge($menu_options, array('' => t('No Main links')));
$form['menu_main_links_source'] = array(
'#type' => 'select',
'#title' => t('Source for the Main links'),
- '#default_value' => 'navigation',
+ '#default_value' => 'main-menu',
'#options' => $main_options,
'#tree' => FALSE,
'#description' => t('Select what should be displayed as the Main links (typically at the top of the page).'),
);
$secondary_options = array_merge($menu_options, array('' => t('No Secondary links')));
- $form["menu_secondary_links_source"] = array(
+ $form['menu_secondary_links_source'] = array(
'#type' => 'select',
'#title' => t('Source for the Secondary links'),
'#default_value' => 'user-menu',