diff options
author | Mark Wells <mark@freeside.biz> | 2015-08-31 13:32:38 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-08-31 13:32:38 -0700 |
commit | b5cfff7585a9107889dfd55208c52d24d27c4b1c (patch) | |
tree | 841082883b9587eb0184d089ccf8699dfc0a0a47 /httemplate/search/cust_bill.html | |
parent | e949bed143088a77ba89a56ff2a25609a1050159 (diff) |
repeatability cleanup, #37340
Diffstat (limited to 'httemplate/search/cust_bill.html')
-rwxr-xr-x | httemplate/search/cust_bill.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/cust_bill.html b/httemplate/search/cust_bill.html index 017e8298f..6e3617b28 100755 --- a/httemplate/search/cust_bill.html +++ b/httemplate/search/cust_bill.html @@ -196,7 +196,7 @@ my $html_init = join("\n", map { ( my $action = $_ ) =~ s/_$//; include('/elements/progress-init.html', $_.'form', - [ keys %search ], + [ sort keys %search ], "../misc/${_}invoices.cgi", { 'message' => "Invoices re-${action}ed" }, #would be nice to show the number of them, but... $_, #key @@ -206,7 +206,7 @@ my $html_init = join("\n", map { my @values = ref($search{$f}) ? @{ $search{$f} } : $search{$f}; map qq!<INPUT TYPE="hidden" NAME="$f" VALUE="$_">!, @values; } - keys %search + sort keys %search ), qq!</FORM>! } qw( print_ email_ fax_ ftp_ spool_ ) ). |