summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2007-02-05 15:49:32 +0000
committerivan <ivan>2007-02-05 15:49:32 +0000
commitd7419fc59cf19d85d511be8a95c615278462b316 (patch)
tree7d4101afef643b8639a03763a9b71cc817e0eb54
parentf731dc5a2bab0f3d04a43d7501257e18164bdcd8 (diff)
fix st00pid mistakes in batch upload
-rw-r--r--httemplate/misc/upload-batch.cgi4
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/misc/upload-batch.cgi b/httemplate/misc/upload-batch.cgi
index a55170218..69d3ca6b1 100644
--- a/httemplate/misc/upload-batch.cgi
+++ b/httemplate/misc/upload-batch.cgi
@@ -26,7 +26,7 @@ unless ( $error ) {
if ( ! $pay_batch ) {
$error = "batchnum $batchnum not found";
} elsif ( $pay_batch->status ne 'I' ) {
- $error = "batch $paybatch is not in transit";
+ $error = "batch $batchnum is not in transit";
} else {
$error = $pay_batch->import_results(
'filehandle' => $fh,
@@ -34,4 +34,6 @@ unless ( $error ) {
);
}
+}
+
</%init>