diff options
-rw-r--r-- | httemplate/misc/batch-cust_pay.html | 2 | ||||
-rw-r--r-- | httemplate/misc/process/batch-cust_pay.cgi | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index ac7f7ffa3..20cc89045 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -300,7 +300,7 @@ <INPUT TYPE="button" VALUE="TEST addrow" onclick="addRow()"> --> <BR> -<INPUT TYPE="submit" NAME="submit" VALUE="Post payments"> +<INPUT TYPE="submit" NAME="submit" VALUE="Post payment batch"> </FORM> 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; |