From 13f7700b75f89bdef702ea5e81e93b8cdedfde71 Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Sat, 24 Nov 2007 09:37:21 -0600 Subject: [PATCH] adding a space between query and limit concat Signed-off-by: Joshua Ferraro --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index b3ec46eb1d..c277ff3e4f 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -880,7 +880,7 @@ sub buildQuery { $query_cgi =~ s/^&//; # append the limit to the query - $query .= $limit; + $query .= " ".$limit; warn "QUERY:".$query if $DEBUG; warn "QUERY CGI:".$query_cgi if $DEBUG; -- 2.39.5