#148 fix wrong password validation message
This commit is contained in:
parent
b3c4bd52de
commit
721aa7f160
|
@ -88,7 +88,7 @@ function guest_register() {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error(_("Your password is to short (please use at least 6 characters)."), true);
|
$msg .= error(sprintf(_("Your password is too short (please use at least %s characters)."), MIN_PASSWORD_LENGTH), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$selected_angel_types = array();
|
$selected_angel_types = array();
|
||||||
|
|
Loading…
Reference in New Issue