diff options
-rw-r--r-- | modules/search/search.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 4c811ca1a..3a5ae4435 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -150,13 +150,13 @@ function search_menu($may_cache) { if ($may_cache) { $items[] = array('path' => 'search', - 'title' => t('search settings'), + 'title' => t('search'), 'callback' => 'drupal_get_form', 'callback arguments' => array('search_view'), 'access' => user_access('search content'), 'type' => MENU_SUGGESTED_ITEM); $items[] = array('path' => 'admin/settings/search', - 'title' => t('search'), + 'title' => t('search settings'), 'description' => t('Configure relevance settings for search and other indexing options'), 'callback' => 'drupal_get_form', 'callback arguments' => array('search_admin_settings'), |