diff options
Diffstat (limited to 'modules/search.module')
-rw-r--r-- | modules/search.module | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/modules/search.module b/modules/search.module index 8fc6091aa..9cdc34431 100644 --- a/modules/search.module +++ b/modules/search.module @@ -78,10 +78,6 @@ function search_menu($may_cache) { 'callback' => 'search_view', 'access' => user_access('search content'), 'type' => MENU_SUGGESTED_ITEM); - $items[] = array('path' => 'search/help', 'title' => t('search help'), - 'callback' => 'search_help_page', - 'access' => user_access('search content'), - 'type' => MENU_SUGGESTED_ITEM); $items[] = array('path' => 'search/search', 'title' => t('search'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10); $items[] = array('path' => 'admin/settings/search', 'title' => t('search'), @@ -509,13 +505,6 @@ function search_view() { } /** - * Menu callback; prints the search engine help page. - */ -function search_help_page() { - print theme('page', search_help()); -} - -/** * @defgroup search Search interface * @{ * The Drupal search interface manages a global search mechanism. @@ -753,4 +742,4 @@ function theme_search_item($item, $type) { } -?>
\ No newline at end of file +?> |