From f401f2f4c95b574880dbee2ff06deca5fac2d8b9 Mon Sep 17 00:00:00 2001 From: Olivier Crouzet Date: Mon, 15 Jan 2018 17:22:22 +0100 Subject: [PATCH] Bug 19971 Typo in the comments of parseQuery routine TEST PLAN --------- 1) Run these commands: git checkout master git pull perldoc C4::Search 2) look for parseQuery -- NOTE: The sample code provided below this heading has the wrong function name! 3) Run these commands: git checkout -b bug_19971 origin/master perldoc C4::Search 4) look for parseQuery -- NOTE: The wrong function name is corrected. 5) Run koha qa test tools Signed-off-by: Mark Tompsett --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index 9278f26..c11a61e 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1335,7 +1335,7 @@ sub _handle_exploding_index { ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang ) = - buildQuery ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang); + parseQuery ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang); Shim function to ease the transition from buildQuery to a new QueryParser. This function is called at the beginning of buildQuery, and modifies -- 2.1.4