adding a space between query and limit concat
authorJoshua Ferraro <jmf@liblime.com>
Sat, 24 Nov 2007 15:37:21 +0000 (09:37 -0600)
committerJoshua Ferraro <jmf@liblime.com>
Sun, 25 Nov 2007 22:25:38 +0000 (16:25 -0600)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/Search.pm

index b3ec46e..c277ff3 100644 (file)
@@ -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;