From f618460a9fee53ba1051e0cd053beac186883c04 Mon Sep 17 00:00:00 2001 From: szaimen Date: Tue, 24 May 2022 19:07:33 +0200 Subject: [PATCH] increase to 7775 Signed-off-by: szaimen --- php/src/Auth/PasswordGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Auth/PasswordGenerator.php b/php/src/Auth/PasswordGenerator.php index e39abec4..6e9ee9a1 100644 --- a/php/src/Auth/PasswordGenerator.php +++ b/php/src/Auth/PasswordGenerator.php @@ -7792,7 +7792,7 @@ class PasswordGenerator if($password !== '') { $password = $password . ' '; } - $password = $password . $this->words[random_int(0, 2047)]; + $password = $password . $this->words[random_int(0, 7775)]; } return $password;