From 5d001d94d64b1bd94e7b0064b72b06f68e0e2ed6 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 4 Nov 2009 04:43:58 +0000 Subject: [PATCH] #576916 follow-up by mooffie: Fixed some mistaken variable renaming. --- modules/menu/menu.admin.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/menu/menu.admin.inc b/modules/menu/menu.admin.inc index efda2de64d0..5522e5f93bd 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',