From 907914624248890a3b50f407618d80e57c16b698 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 19 Feb 2020 12:03:17 +0000 Subject: [PATCH] Bug 24367: (RM follow-up) Syntax error correction Signed-off-by: Martin Renvoize --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index d56988e9c2..8d5ca863e9 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1815,7 +1815,7 @@ sub _build_initial_query { $params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if $params->{original_operand}; #e.g. " and kw,wrdl: test" - $params->{query_desc} .= ( $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} ); + $params->{query_desc} .= $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} ); $params->{previous_operand} = 1 unless $params->{previous_operand}; #If there is no previous operand, mark this as one -- 2.39.2