PMCORE-2967 Review the WARNING in the file workflow/engine/classes/Padl.php

This commit is contained in:
Roly Rudy Gutierrez Pinto
2021-04-23 07:57:31 -04:00
parent d13cd99164
commit bd26906b5d

View File

@@ -504,7 +504,7 @@ class Padl
mt_srand($seed);
for ($i = 0; $length > $i; $i++) {
$str .= $seeds{mt_rand(0, $seeds_count - 1)};
$str .= $seeds[mt_rand(0, $seeds_count - 1)];
}
return $str;
}