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

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

Return to bug 6170