summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-input-mask.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-08-04 11:16:41 -0700
committerMark Wells <mark@freeside.biz>2015-08-04 11:22:05 -0700
commit600e9b690d7649e8cde7a9a4cd1089fcb432d238 (patch)
tree1c4c44eb02857127fbd17e212ddfccbaf584fa21 /httemplate/elements/tr-input-mask.html
parent4b616a57791fd6fb324194a0eb96a8f95826c533 (diff)
de-randomization fixes for testing, #37340
Conflicts: FS/FS/Conf.pm
Diffstat (limited to 'httemplate/elements/tr-input-mask.html')
-rw-r--r--httemplate/elements/tr-input-mask.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/tr-input-mask.html b/httemplate/elements/tr-input-mask.html
index fdd20962d..93e322c6c 100644
--- a/httemplate/elements/tr-input-mask.html
+++ b/httemplate/elements/tr-input-mask.html
@@ -68,7 +68,7 @@ my $init = 0;
<%init>
my %opt = @_;
# must have a DOM id
-my $id = $opt{id} || sprintf('input%04d',int(rand(10000)));
+my $id = $opt{id} || sprintf('input%04d',random_id(4));
my $value = length($opt{curr_value}) ? $opt{curr_value} : $opt{value} || '';
my $clipboard_hack = $FS::CurrentUser::CurrentUser->option('enable_mask_clipboard_hack');