diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-08 12:18:02 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-08 12:18:02 +0000 |
commit | 7fce9ce5984313f53a08d92c5c6a9838c5a98b45 (patch) | |
tree | 2a62ff1320d9c07f61ecd1c91f9e9ce3f0b68ea9 /modules | |
parent | a3fed6e4897c55c0187b5916b93d9317e92c8f3e (diff) | |
download | brdo-7fce9ce5984313f53a08d92c5c6a9838c5a98b45.tar.gz brdo-7fce9ce5984313f53a08d92c5c6a9838c5a98b45.tar.bz2 |
#157577 by pwolanin: search_help() call was missing new parameter
Diffstat (limited to 'modules')
-rw-r--r-- | modules/search/search.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index d19b6cd4b..e9faa5149 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -948,7 +948,7 @@ function search_view($type = 'node') { $results = theme('box', t('Search results'), $results); } else { - $results = theme('box', t('Your search yielded no results'), search_help('search#noresults')); + $results = theme('box', t('Your search yielded no results'), search_help('search#noresults', drupal_help_arg())); } } |