Index: branches/5.2.x/core/kernel/utility/formatters/password_formatter.php =================================================================== diff -u -N -r14095 -r14184 --- branches/5.2.x/core/kernel/utility/formatters/password_formatter.php (.../password_formatter.php) (revision 14095) +++ branches/5.2.x/core/kernel/utility/formatters/password_formatter.php (.../password_formatter.php) (revision 14184) @@ -1,6 +1,6 @@ Application->ConfigValue('Min_Password'); // for error message too + $min_length = $object->GetFieldOption($password_field, 'min_length', false, $min_length); + if (mb_strlen($new_password) < $min_length) { $error_msg = '+' . sprintf($this->Application->Phrase($phrase_error_prefix.'_passwords_too_short'), $min_length); // + -> not phrase $object->SetError($password_field, 'passwords_min_length', $error_msg);