This select a default index to search on, if there is none.
---
 C4/Search.pm |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/C4/Search.pm b/C4/Search.pm
index 21eb767..aa9fb99 100644
--- a/C4/Search.pm
+++ b/C4/Search.pm
@@ -929,6 +929,10 @@ sub buildQuery {
                 my $operand = $operands[$i];
                 my $index   = $indexes[$i];
 
+                if(not $index){
+                    $index = 'kw';
+                } 
+
                 # Add index-specific attributes
                 # Date of Publication
                 if ( $index eq 'yr' ) {
-- 
1.6.0.4

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to