Fix incorrect suggested password length

This commit is contained in:
nathan 2023-01-05 15:34:28 -07:00
parent ef02c01714
commit c403edc49a
2 changed files with 5 additions and 2 deletions

View File

@ -54,8 +54,11 @@ export class Et2Password extends Et2InvokerMixin(Et2Textbox)
}
transformAttributes(attrs)
{
if(typeof attrs.suggest !== "undefined")
{
attrs.suggest = parseInt(attrs.suggest);
}
attrs.type = 'password';
if (attrs.viewable)

View File

@ -126,7 +126,7 @@ class Password extends Etemplate\Widget\Textbox
public static function ajax_suggest($size = 12)
{
$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);
$response = \EGroupware\Api\Json\Response::get();