[Koha-patches] [PATCH] BUG6091 Remove undeclared syspref OPACAdvSearchInputCount

Fridolyn SOMERS fridolyn.somers at progilone.fr
Wed Apr 6 16:09:14 CEST 2011


---
 catalogue/search.pl |    2 +-
 opac/opac-search.pl |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/catalogue/search.pl b/catalogue/search.pl
index 17cbdcc..1f28465 100755
--- a/catalogue/search.pl
+++ b/catalogue/search.pl
@@ -297,7 +297,7 @@ if ( $template_type eq 'advsearch' ) {
     # shouldn't appear on the first one, scan indexes should, adding a new
     # box should only appear on the last, etc.
     my @search_boxes_array;
-    my $search_boxes_count = C4::Context->preference("OPACAdvSearchInputCount") || 3; # FIXME: using OPAC sysprefs?
+    my $search_boxes_count = 3; # begin whith 3 boxes
     # FIXME: all this junk can be done in TMPL using __first__ and __last__
     for (my $i=1;$i<=$search_boxes_count;$i++) {
         # if it's the first one, don't display boolean option, but show scan indexes
diff --git a/opac/opac-search.pl b/opac/opac-search.pl
index e2725fa..79a4c69 100755
--- a/opac/opac-search.pl
+++ b/opac/opac-search.pl
@@ -215,7 +215,7 @@ if ( $template_type && $template_type eq 'advsearch' ) {
     # shouldn't appear on the first one, scan indexes should, adding a new
     # box should only appear on the last, etc.
     my @search_boxes_array;
-    my $search_boxes_count = C4::Context->preference("OPACAdvSearchInputCount") || 3;
+    my $search_boxes_count = 3; # begin whith 3 boxes
     for (my $i=1;$i<=$search_boxes_count;$i++) {
         # if it's the first one, don't display boolean option, but show scan indexes
         if ($i==1) {
-- 
1.7.1



More information about the Koha-patches mailing list