diff options
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r-- | httemplate/misc/process/batch-cust_pay.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/misc/process/batch-cust_pay.cgi b/httemplate/misc/process/batch-cust_pay.cgi index 1cc6c3bad..12d72e8a0 100644 --- a/httemplate/misc/process/batch-cust_pay.cgi +++ b/httemplate/misc/process/batch-cust_pay.cgi @@ -26,7 +26,9 @@ if ( $num_errors ) { - $cgi->param('error', "$num_errors error". ($num_errors>1 ? 's' : '') ); + $cgi->param('error', "$num_errors error". ($num_errors>1 ? 's' : ''). + ' - Batch not processed, correct and resubmit' + ); my $erow=0; $cgi->param('error'. $erow++, shift @errors) while @errors; |