diff options
author | ivan <ivan> | 2005-10-12 12:02:26 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-10-12 12:02:26 +0000 |
commit | 48b79e72df30f70a168b9b318bc7785129c79262 (patch) | |
tree | 38fc6a064dfdde48a72fec88a72460165e490d5c | |
parent | 48d3428579044bda9a8471c31fa8f48b738e4ce1 (diff) |
change button to say "post payment batch" and main error message to indicate the whole batch should be resubmitted, as per feedback from lewis
-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; |