From 700f039384c78a7aae489de75e5c48034d5a5a2f Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Tue, 14 Jul 2009 22:16:27 -0400 Subject: [PATCH] Bug 3322: Fixes expandedSearchOption in opac. Makes "fewer options" possible. Copies the logic of catalogue/search.pl to fix the expanded search option in opac. When expanded search is the default, it was impossible to go to the "fewer" options. Signed-off-by: Galen Charlton --- opac/opac-search.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opac/opac-search.pl b/opac/opac-search.pl index 7169106c59..20d06f50fe 100755 --- a/opac/opac-search.pl +++ b/opac/opac-search.pl @@ -214,11 +214,11 @@ if ( $template_type && $template_type eq 'advsearch' ) { search_boxes_loop => \@search_boxes_array); # use the global setting by default - if ( C4::Context->preference("expandedSearchOption") ) { + if ( C4::Context->preference("expandedSearchOption") == 1 ) { $template->param( expanded_options => C4::Context->preference("expandedSearchOption") ); } # but let the user override it - if ( $cgi->param("expanded_options") && (($cgi->param('expanded_options') == 0) || ($cgi->param('expanded_options') == 1 )) ) { + if ( ($cgi->param('expanded_options') == 0) || ($cgi->param('expanded_options') == 1 ) ) { $template->param( expanded_options => $cgi->param('expanded_options')); } -- 2.39.5