Release new version 4.2.10

This commit is contained in:
Grahame Grieve 2020-03-26 08:29:01 +11:00
parent 5c0bc2d745
commit 200f149222
1 changed files with 1 additions and 1 deletions

View File

@ -2019,7 +2019,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
}
try {
for (char ch : value.toCharArray()) {
if (!(Character.isDigit(ch) || Character.isAlphabetic(ch) || Utilities.existsInList(ch, ';', '?', ':', '@', '&', '=', '+', '$', '.', ',', '/', '%'))) {
if (!(Character.isDigit(ch) || Character.isAlphabetic(ch) || Utilities.existsInList(ch, ';', '?', ':', '@', '&', '=', '+', '$', '.', ',', '/', '%', '-', '_', '~', '#', '[', ']', '!', '\'', '(', ')', '*'))) {
return false;
}
}