From a2743f4cf0741b2cf15d4fed5d705393ddb06eb6 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Wed, 9 Sep 2009 11:41:34 +0200 Subject: [PATCH] [followup](bug #3584) fix variable name --- C4/Search.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Search.pm b/C4/Search.pm index 8f3410f464..885e39c238 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1016,9 +1016,9 @@ sub buildQuery { my $stopwords_removed; # flag to determine if stopwords have been removed my $cclq; - my $indexes = getIndexes(); + my $cclindexes = getIndexes(); if( $query !~ /\s*ccl=/ ){ - for my $index (@$indexes){ + for my $index (@$cclindexes){ if($query =~ /($index)(,?\w)*:/){ $cclq = 1; } -- 2.39.5