Made default password longer

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-04-16 07:47:19 -07:00
parent c149885ceb
commit bcf9188dcd

View file

@ -119,7 +119,7 @@ abstract class Importer
} else { } else {
$this->csv = Reader::createFromString($file); $this->csv = Reader::createFromString($file);
} }
$this->tempPassword = substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'), 0, 20); $this->tempPassword = substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'), 0, 40);
} }
// Cached Values for import lookups // Cached Values for import lookups