diff options
Diffstat (limited to 'modules/menu.module')
-rw-r--r-- | modules/menu.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu.module b/modules/menu.module index 37cf137b7..ef22582cf 100644 --- a/modules/menu.module +++ b/modules/menu.module @@ -400,7 +400,7 @@ function menu_edit_item_form($edit) { else { $form['description'] = array('#type' => 'textfield', '#title' => t('Description'), '#default_value' => $edit['description'], '#description' => t('The description displayed when hovering over a menu item.')); - $path_description = t('The Drupal path this menu item links to.'); + $path_description = t('The Drupal path this menu item links to. Enter %front to link to the front page.', array('%front' => theme('placeholder', '<front>'))); if ($edit['type'] & MENU_CREATED_BY_ADMIN) { $form['path'] = array('#type' => 'textfield', '#title' => t('Path'), '#default_value' => $edit['path'], '#description' => $path_description, '#required' => TRUE); |