diff options
Diffstat (limited to 'modules/menu/menu.module')
-rw-r--r-- | modules/menu/menu.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module index 884b4faed..633125d61 100644 --- a/modules/menu/menu.module +++ b/modules/menu/menu.module @@ -403,7 +403,7 @@ function menu_form_alter(&$form, $form_state, $form_id) { '#title' => t('Parent item'), '#default_value' => $default, '#options' => $options, - '#description' => t('The maximum depth for an item and all its children is fixed at !maxdepth. Some menu items may not be available as parents if selecting them would exceed this limit.', array('!maxdepth' => MENU_MAX_DEPTH)), + '#description' => t('The maximum depth for an item and all its children is fixed at !maxdepth. Some menu items may not be available as parents if selecting them would exceed this limit.', array('!maxdepth' => MENU_MAX_DEPTH)), '#attributes' => array('class' => 'menu-title-select'), ); $form['#submit'][] = 'menu_node_form_submit'; |