summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xserver/scireserver.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/scireserver.pl b/server/scireserver.pl
index dfff449..a71768f 100755
--- a/server/scireserver.pl
+++ b/server/scireserver.pl
@@ -184,7 +184,7 @@ sub identify_client {
sub get_jobs {
- my $query = <<' EndOfQuery'
+ my $query = <<'EndOfQuery';
SELECT jobs.jobid
FROM jobs NATURAL JOIN jobs_clients NATURAL JOIN job_conditions NATURAL JOIN job_history
WHERE jobs_clients.clientid = ?
@@ -193,7 +193,7 @@ sub get_jobs {
AND (job_conditions.expiration_time > now())
AND job_history.statusid = '?'
ORDER BY jobs.priority,jobs.created
- EndOfQuery
+EndOfQuery
debug("Query is $query");
#$sth = $dbh->prepare($query);