From f6f80e1b8bd6302b17468286d868431d634ef9f8 Mon Sep 17 00:00:00 2001 From: Henri-Damien LAURENT Date: Wed, 7 Oct 2009 15:49:02 +0200 Subject: [PATCH] Bug Fix : 3689 Disabling Query_AutoTruncate for NoZebra searches Signed-off-by: Henri-Damien LAURENT --- C4/Search.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/C4/Search.pm b/C4/Search.pm index 252406f94e..bdf1434b1b 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1007,9 +1007,10 @@ sub buildQuery { # no stemming/weight/fuzzy in NoZebra if ( C4::Context->preference("NoZebra") ) { - $stemming = 0; - $weight_fields = 0; - $fuzzy_enabled = 0; + $stemming = 0; + $weight_fields = 0; + $fuzzy_enabled = 0; + $auto_truncation = 0; } my $query = $operands[0]; -- 2.39.2