diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-07 13:39:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-07 13:39:04 +0000 |
commit | 14e925e36a7525533119ce880921e670c0f7261e (patch) | |
tree | 18bf56516bc3576cd1898e05e4e1ab1c7627dbd5 | |
parent | be6adbc00764417a9758a759868f44ab0c2232e3 (diff) | |
download | brdo-14e925e36a7525533119ce880921e670c0f7261e.tar.gz brdo-14e925e36a7525533119ce880921e670c0f7261e.tar.bz2 |
- Patch #87496 by webernet: page titles were reversed. Oops.
-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'), |