adding a space between query and limit concat

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Joshua Ferraro 2007-11-24 09:37:21 -06:00
parent 8566192d84
commit 13f7700b75

View 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;