mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix incorrect suggested password length
This commit is contained in:
parent
ef02c01714
commit
c403edc49a
@ -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)
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user