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:22:05 -0700 |
commit | 600e9b690d7649e8cde7a9a4cd1089fcb432d238 (patch) | |
tree | 1c4c44eb02857127fbd17e212ddfccbaf584fa21 /httemplate/elements/pickcolor.html | |
parent | 4b616a57791fd6fb324194a0eb96a8f95826c533 (diff) |
de-randomization fixes for testing, #37340
Conflicts:
FS/FS/Conf.pm
Diffstat (limited to 'httemplate/elements/pickcolor.html')
-rw-r--r-- | httemplate/elements/pickcolor.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/pickcolor.html b/httemplate/elements/pickcolor.html index d410ebfc7..2b0647fbf 100644 --- a/httemplate/elements/pickcolor.html +++ b/httemplate/elements/pickcolor.html @@ -38,7 +38,7 @@ my %opt = @_; my $value = length($opt{curr_value}) ? $opt{curr_value} : $opt{value}; -my $unum = int(rand(100000)); +my $unum = random_id(5); my $id = $opt{'id'} || $opt{'field'}.$unum; |