diff --git a/modules/search/search.module b/modules/search/search.module index efe1780d5e8eb6929ec65dd1019acb247d346046..f96bd6f186b2f9efec7859fc5f1751239eeb762a 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -988,15 +988,14 @@ function search_get_keys() { * for all of the search features to work. * * There are three ways to interact with the search system: - * - Specifically for searching nodes, you can implement nodeapi('update index') - * and nodeapi('search result'). However, note that the search system already - * indexes all visible output of a node, i.e. everything displayed normally - * by hook_view() and hook_nodeapi('view'). This is usually sufficient. - * You should only use this mechanism if you want additional, non-visible data - * to be indexed. + * - Specifically for searching nodes, you can implement + * hook_nodeapi('update index') and hook_nodeapi('search result'). However, + * note that the search system already indexes all visible output of a node, + * i.e. everything displayed normally by hook_view() and hook_nodeapi('view'). + * This is usually sufficient. You should only use this mechanism if you want + * additional, non-visible data to be indexed. * - Implement hook_search(). This will create a search tab for your module on - * the /search page with a simple keyword search form. You may optionally - * implement hook_search_item() to customize the display of your results. + * the /search page with a simple keyword search form. * - Implement hook_update_index(). This allows your module to use Drupal's * HTML indexing mechanism for searching full text efficiently. *