Index: modules/menu/menu.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/menu/menu.admin.inc,v retrieving revision 1.90 diff -u -p -r1.90 menu.admin.inc --- modules/menu/menu.admin.inc 20 Oct 2010 07:40:59 -0000 1.90 +++ modules/menu/menu.admin.inc 21 Oct 2010 02:33:22 -0000 @@ -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' => $menu_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' => isset($menu_options[$main]) ? $menu_options[$main] : $form['menu_main_links_source']['#empty_option'])), ); return system_settings_form($form);