Index: core/kernel/utility/formatters/password_formatter.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/utility/formatters/password_formatter.php (revision 15892) +++ core/kernel/utility/formatters/password_formatter.php (revision ) @@ -135,7 +135,7 @@ $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 + $error_msg = '+' . sprintf($this->Application->Phrase($phrase_error_prefix . '_passwords_too_short', false), $min_length); // + -> not phrase $object->SetError($password_field, 'passwords_min_length', $error_msg); } } @@ -334,4 +334,4 @@ // if empty salt, assume, that it's not passed at all return $password; } -} \ No newline at end of file +}