mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
Fix incorrect suggested password length
This commit is contained in:
parent
c0d4875422
commit
53c2719497
@ -126,7 +126,7 @@ class Password extends Etemplate\Widget\Textbox
|
|||||||
public static function ajax_suggest($size = 12)
|
public static function ajax_suggest($size = 12)
|
||||||
{
|
{
|
||||||
$config = Api\Config::read('phpgwapi');
|
$config = Api\Config::read('phpgwapi');
|
||||||
$size = max(min((int)$size, (int)$config['force_pwd_length']), 6);
|
$size = max((int)$size, (int)$config['force_pwd_length'], 6);
|
||||||
$password = Auth::randomstring($size, $config['force_pwd_strength'] == 4);
|
$password = Auth::randomstring($size, $config['force_pwd_strength'] == 4);
|
||||||
|
|
||||||
$response = \EGroupware\Api\Json\Response::get();
|
$response = \EGroupware\Api\Json\Response::get();
|
||||||
|
Loading…
Reference in New Issue
Block a user