function apachesolr_search_noresults in Apache Solr Search 5.2
Same name and namespace in other branches
- 6 apachesolr_search.module \apachesolr_search_noresults()
1 call to apachesolr_search_noresults()
- apachesolr_search_view in ./
apachesolr_search.module - Re-implementation of search_view().
1 string reference to 'apachesolr_search_noresults'
- apachesolr_search_view in ./
apachesolr_search.module - Re-implementation of search_view().
File
- ./
apachesolr_search.module, line 157 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_noresults() {
return t('<ul>
<li>Check if your spelling is correct, or try removing filters.</li>
<li>Remove quotes around phrases to match each word individually: <em>"blue drop"</em> will match less than <em>blue drop</em>.</li>
<li>You can require or exclude terms using + and -: <em>big +blue drop</em> will require a match on <em>blue</em> while <em>big blue -drop</em> will exclude results that contain <em>drop</em>.</li>
</ul>');
}