From 815b596e2053d893fe226c1b5c9b7cf2c40b382c Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@biblibre.com>
Date: Mon, 2 Jul 2012 16:14:35 +0200
Subject: [PATCH 1/1] Bug 8172: Followup: Removes useless empty params

---
 C4/Search.pm            |    2 +-
 cataloguing/addbooks.pl |    3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/C4/Search.pm b/C4/Search.pm
index 4f61661..882e4b2 100644
--- a/C4/Search.pm
+++ b/C4/Search.pm
@@ -1792,7 +1792,7 @@ sub searchResults {
         # XSLT processing of some stuff
 	use C4::Charset;
 	SetUTF8Flag($marcrecord);
-	$debug && warn $marcrecord->as_formatted;
+        warn $marcrecord->as_formatted if $DEBUG;
 	my $interface = $search_context eq 'opac' ? 'OPAC' : '';
 	if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) {
             $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, $interface."XSLTResultsDisplay", 1, \@hiddenitems);
diff --git a/cataloguing/addbooks.pl b/cataloguing/addbooks.pl
index 5f3b7d3..7bca2f3 100755
--- a/cataloguing/addbooks.pl
+++ b/cataloguing/addbooks.pl
@@ -70,8 +70,7 @@ if ($query) {
 
     # build query
     my @operands = $query;
-    my (@operators, @indexes, @sort_by, @limits) = ();
-    my ( $builterror,$builtquery,$simple_query,$query_cgi,$query_desc,$limit,$limit_cgi,$limit_desc,$stopwords_removed,$query_type) = buildQuery(\@operators,\@operands,\@indexes,\@limits,\@sort_by,undef,undef);
+    my ( $builterror,$builtquery,$simple_query,$query_cgi,$query_desc,$limit,$limit_cgi,$limit_desc,$stopwords_removed,$query_type) = buildQuery(undef,\@operands);
 
     # find results
     my ( $error, $marcresults, $total_hits ) = SimpleSearch($builtquery, $results_per_page * ($page - 1), $results_per_page);
-- 
1.7.7.3