diff options
author | Mark Wells <mark@freeside.biz> | 2015-08-04 11:16:41 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-08-04 11:52:57 -0700 |
commit | ce1a26f5033acf26ccf0c922b2fc43cc2baa2bb9 (patch) | |
tree | e146ac70e272749658fe146e522931ad83a79269 /httemplate/elements/bill.html | |
parent | 908d425750365b7a2bf59334ccfc41adc9d61a17 (diff) |
de-randomization fixes for testing, #37340
Conflicts:
FS/FS/Conf.pm
Diffstat (limited to 'httemplate/elements/bill.html')
-rw-r--r-- | httemplate/elements/bill.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/bill.html b/httemplate/elements/bill.html index 64a1a6d2c..420a7489b 100644 --- a/httemplate/elements/bill.html +++ b/httemplate/elements/bill.html @@ -45,7 +45,7 @@ my $label = $opt{'label'}; # formname no longer needs to be passed from outside, but we still # need one and it needs to be unique my $formname = $opt{'formname'} || - 'bill'.sprintf('%04d',int(rand(10000))).$custnum; + 'bill'.sprintf('%04d',random_id(4)).$custnum; my $url = $opt{'url'} || ''; my $message = $opt{'message'} || 'Finished!'; my $bill_opts = $opt{'bill_opts'} || {}; |