Changed password generation for installator

This commit is contained in:
Jose Gonzalez 2020-12-01 17:08:43 +01:00
parent 1425b09683
commit 50a118b55d

View File

@ -350,7 +350,7 @@ function random_name($size)
{
$temp = '';
for ($a = 0; $a < $size; $a++) {
$temp = $temp.chr(rand(122, 97));
$temp = $temp.chr(rand(126, 33));
}
return $temp;