summaryrefslogtreecommitdiff
path: root/httemplate/misc/queue.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/misc/queue.cgi')
-rw-r--r--httemplate/misc/queue.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/misc/queue.cgi b/httemplate/misc/queue.cgi
index 8c1e536..ce9c8fb 100644
--- a/httemplate/misc/queue.cgi
+++ b/httemplate/misc/queue.cgi
@@ -9,7 +9,8 @@ if ( $action eq 'new' || $action eq 'del' ) {
$cgi->param('jobnum') =~ /^(\d+)$/ or die "Illegal jobnum";
my $jobnum = $1;
$job = qsearchs('queue', { 'jobnum' => $1 })
- or die "unknown jobnum $jobnum";
+ or die "unknown jobnum $jobnum - ".
+ "it probably completed normally or was removed by another user";
}
if ( $action eq 'new' ) {