diff options
author | ivan <ivan> | 2010-11-27 03:55:07 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-11-27 03:55:07 +0000 |
commit | 02a6bfc2dba1a1f9c1efcd7d7da258b33be76d30 (patch) | |
tree | 8e17e022feffadaaed19a6db1d6e630d7656a5e5 /httemplate/misc/batch-cust_pay.html | |
parent | 4d510fab209dcfd9e6ec75a55ee653593e2d1435 (diff) |
fix "URL limit exceeded" when errors are present on quick payment entry, RT#9917
Diffstat (limited to 'httemplate/misc/batch-cust_pay.html')
-rw-r--r-- | httemplate/misc/batch-cust_pay.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index 610f6e1db..c5ed6d852 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -107,7 +107,7 @@ my @footer = ( '$', '_TOTAL', '' ); my @footer_align = ( 'c', 'r', 'r' ); my $custnum_update_callback = ''; -if ( FS::Record->scalar_sql('SELECT count(*) FROM part_pkg_discount') ) { +if ( FS::Record->scalar_sql('SELECT COUNT(*) FROM part_pkg_discount') ) { push @header, ''; push @fields, 'discount_term'; push @types, 'immutable'; @@ -128,4 +128,6 @@ push @colors, '#ff0000'; push @footer, ''; push @footer_align, ''; +$m->comp('/elements/handle_uri_query'); + </%init> |