View | Details | Raw Unified | Return to bug 6170
Collapse All | Expand All

(-)a/opac/opac-search.pl (-2 / +1 lines)
Lines 65-71 my $build_grouped_results = C4::Context->preference('OPACGroupResults'); Link Here
65
if ($format =~ /(rss|atom|opensearchdescription)/) {
65
if ($format =~ /(rss|atom|opensearchdescription)/) {
66
	$template_name = 'opac-opensearch.tmpl';
66
	$template_name = 'opac-opensearch.tmpl';
67
}
67
}
68
elsif ($build_grouped_results) {
68
elsif (@params && $build_grouped_results) {
69
    $template_name = 'opac-results-grouped.tmpl';
69
    $template_name = 'opac-results-grouped.tmpl';
70
}
70
}
71
elsif ((@params>=1) || ($cgi->param("q")) || ($cgi->param('multibranchlimit')) || ($cgi->param('limit-yr')) ) {
71
elsif ((@params>=1) || ($cgi->param("q")) || ($cgi->param('multibranchlimit')) || ($cgi->param('limit-yr')) ) {
72
- 

Return to bug 6170