function theme_apachesolr_search_results_page in Apache Solr Search 6
Same name and namespace in other branches
- 6.2 apachesolr_search.module \theme_apachesolr_search_results_page()
 
Theme function for the search results page.
1 theme call to theme_apachesolr_search_results_page()
- apachesolr_search_view in ./
apachesolr_search.module  - Re-implementation of search_view().
 
File
- ./
apachesolr_search.module, line 1216  - Provides a content search implementation for node content for use with the Apache Solr search application.
 
Code
function theme_apachesolr_search_results_page($form, $results) {
  return $form . $results;
}