Fatal error: Call to undefined function: search_help() in /home/www/klyd/public_html/new/modules/flexisearch/flexisearch.module on line 110

I get this when using flexisearch module version 4.6.0

Comments

meba’s picture

Status: Active » Needs review

Here is howto, how patch flexisearch. Find line 110 and:

remove line:
 $search_results .= theme('box', t('Your search yielded no results'), search_help('search#noresults'));
paste line:
 $search_results .= theme('box', t('Your search yielded no results'), flexisearch_help('search#noresults'));
Dublin Drupaller’s picture

You're getting that error because the search.module isn't enabled.

Dub

Dublin Drupaller’s picture

Status: Needs review » Closed (won't fix)