Fix extrafield password must be >= than 64 for password_hash

This commit is contained in:
Laurent Destailleur 2018-02-23 13:19:33 +01:00
parent 8b479a05ad
commit cc618e886f

View File

@ -234,7 +234,7 @@ class ExtraFields
$lengthdb='11';
} elseif($type=='password') {
$typedb='varchar';
$lengthdb='50';
$lengthdb='128';
} else {
$typedb=$type;
$lengthdb=$length;