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/graph | |
parent | 4b616a57791fd6fb324194a0eb96a8f95826c533 (diff) |
de-randomization fixes for testing, #37340
Conflicts:
FS/FS/Conf.pm
Diffstat (limited to 'httemplate/graph')
-rw-r--r-- | httemplate/graph/elements/report.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/graph/elements/report.html b/httemplate/graph/elements/report.html index cffc82816..f1b0d166d 100644 --- a/httemplate/graph/elements/report.html +++ b/httemplate/graph/elements/report.html @@ -331,7 +331,7 @@ if ( $cgi->param('session') =~ /^(\d+)$/ ) { %opt = %{ $m->cache->get($session) }; } else { - $session = sprintf("%010d%06d", time, int(rand(1000000))); + $session = sprintf("%010d", random_id(10)); $m->cache->set($session, \%opt, '1h'); } |